1
1
Fork 0
nixos/machines/mypi3/default.nix

13 lines
184 B
Nix
Raw Normal View History

{
imports = [ ./hardware-configuration.nix ];
custom.hostname = "mypi3";
swapDevices = [
{
device = "/var/swapfile";
size = 4 * 1024; # GiB * 1024
}
];
}