write-ups-challenges-2020-2021/deployment/hardware-configuration.nix
2022-11-24 18:03:20 +01:00

7 lines
190 B
Nix

{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}