nixos-servers/machines/atlas.nix
Pim Kunis a21a09ad6b Install longhorn on k3s
Introduce new storage standard with LVM
2024-05-18 23:32:58 +02:00

17 lines
268 B
Nix

{
machines.atlas = {
arch = "x86_64-linux";
nixosModule.lab = {
storage = {
kubernetesNode = true;
};
k3s = {
enable = true;
# role = "server";
serverAddr = "https://jefke.dmz:6443";
};
};
};
}