summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2026-04-03 19:37:14 -0600
committerAlejandro Soto <alejandro@34project.org>2026-04-03 19:37:30 -0600
commit0b64cdb680f8f8418f1faf7258e1c5c497069e1a (patch)
tree0255ff49cbfdc5c120d65346844f83c58922e136
parent3b2dfbb42bcbf86ec8cda33110739244f6fd8b99 (diff)
sys/boot: efi: add efibootmgr to systemPackages
-rw-r--r--sys/boot/efi.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/boot/efi.nix b/sys/boot/efi.nix
index 71c42c8..0abd7a9 100644
--- a/sys/boot/efi.nix
+++ b/sys/boot/efi.nix
@@ -1,6 +1,7 @@
{
config,
lib,
+ pkgs,
...
}:
with lib; let
@@ -39,6 +40,10 @@ in {
};
};
+ environment.systemPackages = [
+ pkgs.efibootmgr
+ ];
+
fileSystems.${cfg.esp.mountpoint} = {
device = "/dev/disk/by-uuid/${cfg.esp.uuid}";
fsType = "vfat";