diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-24 13:35:39 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-24 13:35:47 -0500 |
| commit | c1cef0f7eafaf85bbae9878b92971a97d7583247 (patch) | |
| tree | be4e6c6a01d584fdbfc58cc328ecca54f7be6319 /modules/boot/nixos/default.nix | |
| parent | c9ec61f01a26cff66ef779f0b94694684a16d7da (diff) | |
changes; im lazy
Diffstat (limited to 'modules/boot/nixos/default.nix')
| -rw-r--r-- | modules/boot/nixos/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/boot/nixos/default.nix b/modules/boot/nixos/default.nix index 66f31fc..06e68c3 100644 --- a/modules/boot/nixos/default.nix +++ b/modules/boot/nixos/default.nix @@ -24,7 +24,7 @@ in { configurationLimit = 3; }; efi.canTouchEfiVariables = true; - timeout = 0; + timeout = 0; # hold space to show boot menu }; } // (lib.optionalAttrs cfg.secureBoot.enable { @@ -34,5 +34,11 @@ in { }; }); - environment.systemPackages = lib.mkIf cfg.secureBoot.enable [pkgs.sbctl]; + environment.systemPackages = + ( + if cfg.secureBoot.enable + then [pkgs.sbctl] + else [] + ) + ++ [pkgs.efibootmgr]; } |
