nixos-servers/machines/jefke.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

17 lines
262 B
Nix

{
machines.jefke = {
arch = "x86_64-linux";
nixosModule.lab = {
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
k3s = {
enable = true;
clusterInit = true;
};
};
};
}