Adjust generic conf

This commit is contained in:
Vili Sinervä 2024-08-05 18:22:23 +03:00
parent f94f7321a2
commit b5aa1d9f8c
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -4,7 +4,16 @@
imports = [ ../base.nix ];
# Bootloader.
boot.loader.systemd-boot.enable = 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;
}
];
}