pinwheel: Add module for k8s related software

This commit is contained in:
Alexander Heldt
2023-09-24 20:28:12 +02:00
parent 9ab6c819e0
commit 6e104f2796
2 changed files with 11 additions and 0 deletions

View File

@@ -32,6 +32,7 @@
./modules/nix
./modules/spotify
./modules/podman
./modules/k8s
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
home-manager.users.alex = {
home.packages = [
pkgs.kubectl
pkgs.kubernetes-helm
pkgs.kind
];
};
}