Adjust generic conf
This commit is contained in:
parent
f94f7321a2
commit
b5aa1d9f8c
1 changed files with 10 additions and 1 deletions
|
@ -4,7 +4,16 @@
|
||||||
|
|
||||||
imports = [ ../base.nix ];
|
imports = [ ../base.nix ];
|
||||||
|
|
||||||
# Bootloader.
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
#Many installs will need this, and it won't hurt either way
|
||||||
|
services.qemuGuest.enable = true;
|
||||||
|
|
||||||
|
swapDevices = [
|
||||||
|
{
|
||||||
|
device = "/var/lib/swapfile";
|
||||||
|
size = 8 * 1024;
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue