add hardware-configuration.nix for testing purposes

flake-to-override
Alexander Tomokhov 2023-07-15 16:52:30 +04:00
parent 65b5a19777
commit 659ca147fd
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
}