about summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2022-11-30 17:56:16 +0100
committerCole Helbling <cole.e.helbling@outlook.com>2022-12-08 13:50:04 -0800
commit980f50124f6b0b611c348aaa96292ffca0f25b37 (patch)
tree1e4c35b37b1077ae4fe60915b039e50d2de8bf5c /nixos/modules/system
parent092e6d39cd50f3282a2694b0a3000bf0d27012fe (diff)
nixos/boot/external: add @raitobezarius as maintainer and allow initrd secrets
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/loader/external/external.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/system/boot/loader/external/external.nix b/nixos/modules/system/boot/loader/external/external.nix
index 86f4eaaeba468..300870430866b 100644
--- a/nixos/modules/system/boot/loader/external/external.nix
+++ b/nixos/modules/system/boot/loader/external/external.nix
@@ -7,7 +7,7 @@ let
 in
 {
   meta = {
-    maintainers = with maintainers; [ cole-h grahamc ];
+    maintainers = with maintainers; [ cole-h grahamc raitobezarius ];
     # Don't edit the docbook xml directly, edit the md and generate it:
     # `pandoc external.md -t docbook --top-level-division=chapter --extract-media=media -f markdown+smart > external.xml`
     doc = ./external.xml;
@@ -30,7 +30,7 @@ in
     boot.loader = {
       grub.enable = mkDefault false;
       systemd-boot.enable = mkDefault false;
-      supportsInitrdSecrets = false;
+      supportsInitrdSecrets = mkDefault false;
     };
 
     system.build.installBootLoader = cfg.installHook;