athens/hosts/socrates/hardware-configuration.nix

7 lines
190 B
Nix
Raw Normal View History

2022-05-03 21:00:37 -04:00
{ modulesPath, ... }:
2021-03-07 22:05:33 -05:00
{
2022-05-03 21:00:37 -04:00
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2021-03-07 22:05:33 -05:00
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}