Merge pull request #71986 from mtetreault/mte/plymouth-improvements

plymouth: Add extra config field
This commit is contained in:
Thomas Tuegel 2019-11-09 08:17:14 -06:00 committed by GitHub
commit 8e639f142f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,7 @@ let
[Daemon]
ShowDelay=0
Theme=${cfg.theme}
${cfg.extraConfig}
'';
in
@ -65,6 +66,15 @@ in
'';
};
extraConfig = mkOption {
type = types.lines;
default = "";
description = ''
Literal string to append to <literal>configFile</literal>
and the config file generated by the plymouth module.
'';
};
};
};