From ba783cf2ef89d084c3ab428ea309082d939a327c Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Fri, 6 Mar 2026 01:40:47 +0000 Subject: [PATCH] kubectl module --- hosts/physical/crow/default.nix | 2 ++ nixos/modules/kubectl.nix | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 nixos/modules/kubectl.nix diff --git a/hosts/physical/crow/default.nix b/hosts/physical/crow/default.nix index 03b9c77..53148b5 100644 --- a/hosts/physical/crow/default.nix +++ b/hosts/physical/crow/default.nix @@ -12,6 +12,8 @@ ../../../nixos/roles/physical/desktop/common ../../../nixos/roles/physical/desktop/niri + + ../../../nixos/modules/kubectl.nix ]; home-manager = { diff --git a/nixos/modules/kubectl.nix b/nixos/modules/kubectl.nix new file mode 100644 index 0000000..0b36b59 --- /dev/null +++ b/nixos/modules/kubectl.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + environment.systemPackage = with pkgs; [ + kubectl + ]; +}