Pim Kunis
998e01ae8c
Enable DNS over IPv6 and TCP to comply with isnic Provision k3s CA Make Atlas a k8s agent instead of server
18 lines
305 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|