16 lines
298 B
Nix
16 lines
298 B
Nix
{
|
|
machines.lewis = {
|
|
arch = "x86_64-linux";
|
|
|
|
nixosModule.lab = {
|
|
backups.enable = true;
|
|
data-sharing.enable = true;
|
|
networking.dmz.allowConnectivity = true;
|
|
|
|
storage = {
|
|
osDisk = "/dev/sda";
|
|
dataPartition = "/dev/nvme0n1p1";
|
|
};
|
|
};
|
|
};
|
|
}
|