6 lines
No EOL
124 B
Nix
6 lines
No EOL
124 B
Nix
{ swapfile, ... }: {
|
|
swapDevices = if swapfile == 0 then [] else [{
|
|
device = "/swapfile";
|
|
size = swapfile;
|
|
}];
|
|
} |