nixos/boot/external: add @raitobezarius as maintainer and allow initrd secrets

This commit is contained in:
Raito Bezarius
2022-12-08 13:50:04 -08:00
committed by Cole Helbling
parent 092e6d39cd
commit 980f50124f
+2 -2
View File
@@ -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;