diff options
Diffstat (limited to 'sys/core/bootloader.nix')
| -rw-r--r-- | sys/core/bootloader.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/core/bootloader.nix b/sys/core/bootloader.nix index 292679e..7293ffc 100644 --- a/sys/core/bootloader.nix +++ b/sys/core/bootloader.nix @@ -1,14 +1,13 @@ { config, lib, ... }: let - cfg = config.szpont.sys.core.bootloader; + cfg = config.sys.core.bootloader; in { - options.szpont.sys.core.bootloader = lib.mkOption { + options.sys.core.bootloader = lib.mkOption { type = lib.types.enum [ "systemd-boot" "grub" "none" ]; default = "systemd-boot"; - description = "Which bootloader to use"; + description = "which bootloader to use"; }; - config = lib.mkMerge [ { boot.loader.efi.canTouchEfiVariables = true; |
