nixos-servers/machines/jefke.nix

18 lines
262 B
Nix
Raw Normal View History

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