17 lines
269 B
Nix
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
|
|
];
|
|
}
|