blob: a1a4fbafb02b4d32820ea5afeb5af4bf76708fce [file] [log] [blame]
Serge Bazanski5ac5e4b2022-07-06 00:31:35 +02001{ modulesPath, ... }:
2{
3 imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
4 boot.loader.grub = {
5 efiSupport = true;
6 efiInstallAsRemovable = true;
7 device = "nodev";
8 };
9 fileSystems."/boot" = { device = "/dev/disk/by-uuid/BF5B-72BC"; fsType = "vfat"; };
10 boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
11 boot.initrd.kernelModules = [ "nvme" ];
12 fileSystems."/" = { device = "/dev/mapper/ocivolume-root"; fsType = "xfs"; };
13
14}