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