athens/nix/hosts/socrates/hardware-configuration.nix

10 lines
200 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";
2024-12-07 20:46:15 -05:00
fileSystems."/" = {
device = "/dev/vda1";
fsType = "ext4";
};
2021-03-07 22:05:33 -05:00
}