nix config
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

k8s: include kubectl by default, disable libvirtd

+2 -2
+2 -2
hosts/profiles/kuberenetes/default.nix
··· 9 9 # services.k3s.extraFlags = toString [ 10 10 # "--kubelet-arg=v=4" # Optionally add additional args to k3s 11 11 # ]; 12 - environment.systemPackages = [ pkgs.k3s pkgs.kubernetes-helm ]; 12 + environment.systemPackages = [ pkgs.k3s pkgs.kubernetes-helm pkgs.kubectl ]; 13 13 14 14 # minikube on docker 15 15 virtualisation.docker.enable = true; 16 16 virtualisation.docker.storageDriver = "btrfs"; 17 17 # or use kvm 18 - virtualisation.libvirtd.enable = true; 18 + # virtualisation.libvirtd.enable = true; 19 19 users.users.anish.extraGroups = [ "docker" "libvert" ]; # 20 20 }