This commit is contained in:
2026-02-18 21:23:56 +01:00
commit 11ce3ba32f
41 changed files with 2422 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ lib, pkgs, ... }:
{
imports = [ ../services/k3s-agent.nix ];
networking = {
hostName = lib.mkForce "cyper-cluster";
useDHCP = true;
nameservers = [ "1.1.1.1" "8.8.8.8" ];
};
environment.systemPackages = with pkgs; [
kubectl
helm
];
}