plymouth: Add extra config field

Signed-off-by: Mathieu A.-Tetreault <alexandretm@amotus.ca>
This commit is contained in:
Mathieu A.-Tetreault 2019-10-24 16:28:11 -04:00
parent 6db4ae1f27
commit 054ceb826e

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.
'';
};
};
};