16 lines
293 B
Nix
16 lines
293 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../common/global
|
|
../common/compute-node.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "c1";
|
|
|
|
swapDevices = pkgs.lib.mkForce [ {
|
|
device = "/dev/disk/by-id/nvme-eui.002538b981b03d98-part2";
|
|
randomEncryption.enable = true;
|
|
}];
|
|
}
|