server-config/hardware-configuration.nix

7 lines
188 B
Nix
Raw Normal View History

2021-10-23 01:00:32 -07:00
{ modulesPath, ... }:
{
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}