kubectl module

This commit is contained in:
KnightArtorias 2026-03-06 01:40:47 +00:00
parent 9f79d2d557
commit ba783cf2ef
2 changed files with 9 additions and 0 deletions

View file

@ -12,6 +12,8 @@
../../../nixos/roles/physical/desktop/common
../../../nixos/roles/physical/desktop/niri
../../../nixos/modules/kubectl.nix
];
home-manager = {

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackage = with pkgs; [
kubectl
];
}