From 0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Tue, 23 Jun 2026 02:56:12 +0200 Subject: treewide: rename paths to jaki --- modules/nixos/sils/bootloader.nix | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 modules/nixos/sils/bootloader.nix (limited to 'modules/nixos/sils/bootloader.nix') 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 {}; -} -- cgit v1.3.1