nixos/*: unhide remaining systemd stage-1 options
These options were missed in NixOS/nixpkgs#226237, but they all were specifically added for systemd stage-1.
This commit is contained in:
@@ -5,8 +5,12 @@
|
||||
in {
|
||||
|
||||
options.boot.initrd.services.swraid = {
|
||||
enable = (lib.mkEnableOption (lib.mdDoc "swraid support using mdadm")) // {
|
||||
visible = false; # only has effect when the new stage 1 is in place
|
||||
enable = lib.mkEnableOption (lib.mdDoc "swraid support using mdadm") // {
|
||||
description = ''
|
||||
*This will only be used when systemd is used in stage 1.*
|
||||
|
||||
Whether to enable swraid support using mdadm.
|
||||
'';
|
||||
};
|
||||
|
||||
mdadmConf = lib.mkOption {
|
||||
|
||||
Reference in New Issue
Block a user