nixos-config/configs/dummy/hardware-configuration.nix

10 lines
193 B
Nix
Raw Normal View History

2020-05-20 00:30:53 +02:00
{ ... }: {
imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
}