From ad83c53c2016ecfcc762b051dcf52a781889328e Mon Sep 17 00:00:00 2001 From: Benoit Donneaux <benoit@leastauthority.com> Date: Mon, 27 Nov 2023 09:45:27 +0100 Subject: [PATCH] Describe systemd-boot support Signed-off-by: Benoit Donneaux <benoit@leastauthority.com> --- nixos/modules/100tb.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/100tb.nix b/nixos/modules/100tb.nix index 505fe270..6c86c8f2 100644 --- a/nixos/modules/100tb.nix +++ b/nixos/modules/100tb.nix @@ -73,7 +73,7 @@ let systemd-boot = lib.mkOption { type = lib.types.bool; default = false; - description = "Fill later"; + description = "Whether to enable the systemd-boot (formerly gummiboot) EFI boot manager"; }; }; @@ -111,7 +111,7 @@ in { { boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = if cfg.grubDeviceID == "nodev" then "nodev" else "/dev/disk/by-id/${cfg.grubDeviceID}"; - boot.loader.systemd-boot.enable = cfg.systemd-boot; + boot.loader.systemd-boot.enable = cfg.systemd-boot; boot.loader.timeout = 10; networking.firewall.enable = false; -- GitLab