12 lines
144 B
Nix
12 lines
144 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
swapDevices = [
|
||
|
{
|
||
|
device = "/var/lib/swapfile";
|
||
|
size = 2 * 1024;
|
||
|
}
|
||
|
];
|
||
|
|
||
|
services.qemuGuest.enable = true;
|
||
|
}
|