stockholm/krebs/1systems/ponte/hw.nix

15 lines
464 B
Nix
Raw Normal View History

2022-05-03 20:55:35 +00:00
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.efi.efiSysMountPoint = "/boot/EFI";
2022-05-03 20:55:35 +00:00
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
copyKernels = false;
};
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
fileSystems."/boot/EFI" = { device = "/dev/disk/by-uuid/628A-7F3B"; fsType = "vfat"; };
2022-05-03 20:55:35 +00:00
}