noctilucent initial config

This commit is contained in:
Grigory Shipunov 2023-06-17 15:02:17 +02:00
parent 755bc4fbf7
commit 8064a2e155
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
2 changed files with 63 additions and 1 deletions

View file

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