Files
cyper-servers/hosts/cyper-cluster/configuration.nix
2026-02-18 21:23:56 +01:00

17 lines
269 B
Nix

{ 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
];
}