nixos-servers/machines/atlas.nix
Pim Kunis 998e01ae8c Enable IPv6 support for K8s
Enable DNS over IPv6 and TCP to comply with isnic
Provision k3s CA
Make Atlas a k8s agent instead of server
2024-05-09 17:03:13 +02:00

18 lines
305 B
Nix

{
machines.atlas = {
arch = "x86_64-linux";
nixosModule.lab = {
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
k3s = {
enable = true;
role = "agent";
serverAddr = "https://jefke.dmz:6443";
};
};
};
}