diff --git a/nixos/modules/100tb.nix b/nixos/modules/100tb.nix index 505fe27071d8f15460cfa70bcc2d6e26a46d2c2c..6c86c8f28238b10349787e3aea5c2b4ae49aae2a 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;