lightdm-greeters service: add extraConfig option (#24135)

This commit is contained in:
Piotr Bogdan 2017-03-22 14:33:22 +00:00 committed by Franz Pletz
parent bfb7890fa0
commit a4b4cd0710

View File

@ -45,6 +45,7 @@ let
theme-name = ${cfg.theme.name} theme-name = ${cfg.theme.name}
icon-theme-name = ${cfg.iconTheme.name} icon-theme-name = ${cfg.iconTheme.name}
background = ${ldmcfg.background} background = ${ldmcfg.background}
${cfg.extraConfig}
''; '';
in in
@ -103,6 +104,15 @@ in
}; };
extraConfig = mkOption {
type = types.lines;
default = "";
description = ''
Extra configuration that should be put in the lightdm-gtk-greeter.conf
configuration file.
'';
};
}; };
}; };