diff options
| author | Silas Schöffel <sils@sils.li> | 2026-06-23 02:56:12 +0200 |
|---|---|---|
| committer | Silas Schöffel <sils@sils.li> | 2026-06-23 02:56:12 +0200 |
| commit | 0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1 (patch) | |
| tree | 978f54918d4cecb5af209f1e0655fc227c6d9987 /modules/nixos/sils/bootloader.nix | |
| parent | user: rename to jaki (diff) | |
| download | nix-config-0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1.zip | |
treewide: rename paths to jaki
Diffstat (limited to 'modules/nixos/sils/bootloader.nix')
| -rw-r--r-- | modules/nixos/sils/bootloader.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/nixos/sils/bootloader.nix b/modules/nixos/sils/bootloader.nix deleted file mode 100644 index fc0e0f3..0000000 --- a/modules/nixos/sils/bootloader.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - config, - lib, - ... -}: let - btl = config.sils.bootloader; -in { - options.sils.bootloader = lib.mkOption { - type = lib.types.enum ["lanzaboote" "grub"]; - default = "lanzaboote"; - description = "Which bootloader to use."; - }; - config.boot = - if btl == "lanzaboote" - then { - lanzaboote = { - enable = true; - configurationLimit = 10; - pkiBundle = "/etc/secureboot"; - settings = { - editor = false; - }; - }; - } - else if btl == "grub" - then { - loader.grub.enable = true; - } - else {}; -} |
