nixfiles/hosts/dyon/hardware-configuration.nix

6 lines
189 B
Nix
Raw Normal View History

2021-03-13 15:32:44 +01:00
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
}