blob: 458fd49c18d7bcff9ca6bb52adc5faf6014bb1ce (
plain)
1
2
3
4
5
6
7
8
9
|
{ ... }:
{
imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
swapDevices = [
{ device = "/swapfile"; } # 4GB
];
}
|