Setting up basic ops

This commit is contained in:
Natsu Kagami 2021-10-27 15:36:16 -04:00
parent dc1b4e9371
commit 7a356af15d
5 changed files with 150 additions and 3 deletions

View file

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