this repo has no description
2
fork

Configure Feed

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

add k8s config for k3s and minikube to curve

+14
+1
hosts/curve/default.nix
··· 13 13 ../profiles/mimetypes 14 14 ../profiles/syncthing 15 15 ../profiles/mossnet-hosts 16 + ../profiles/kuberenetes 16 17 ]; 17 18 18 19 # home-manager.users.anish = import ../../home/gui;
+13
hosts/profiles/kuberenetes/default.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + # k3s 5 + networking.firewall.allowedTCPPorts = [ 6443 ]; 6 + services.k3s.enable = true; 7 + services.k3s.role = "server"; 8 + # services.k3s.extraFlags = toString [ 9 + # "--kubelet-arg=v=4" # Optionally add additional args to k3s 10 + # ]; 11 + environment.systemPackages = [ pkgs.k3s pkgs.kubernetes-helm ]; 12 + 13 + }