summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-05-04 13:30:59 +0200
committerlassulus <lassulus@lassul.us>2022-05-04 13:30:59 +0200
commit264827aac1123ba4dd87a309b0171d2114695ea6 (patch)
treea1de5e670eb52db30675bcf4df37e8a657f8e460
parent83ae50c31a73d17885baf38586c892124fc076c2 (diff)
ponte.r: put kernels/initrd on root platform
-rw-r--r--krebs/1systems/ponte/hw.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/krebs/1systems/ponte/hw.nix b/krebs/1systems/ponte/hw.nix
index 83b53748..78f7a603 100644
--- a/krebs/1systems/ponte/hw.nix
+++ b/krebs/1systems/ponte/hw.nix
@@ -1,13 +1,14 @@
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
+ boot.loader.efi.efiSysMountPoint = "/boot/EFI";
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
copyKernels = false;
};
- fileSystems."/boot" = { device = "/dev/disk/by-uuid/628A-7F3B"; fsType = "vfat"; };
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
+ fileSystems."/boot/EFI" = { device = "/dev/disk/by-uuid/628A-7F3B"; fsType = "vfat"; };
}