Skip to content

Commit

Permalink
lightdm-greeters service: add extraConfig option (#24135)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbogdan authored and fpletz committed Mar 22, 2017
1 parent bfb7890 commit a4b4cd0
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -45,6 +45,7 @@ let
theme-name = ${cfg.theme.name}
icon-theme-name = ${cfg.iconTheme.name}
background = ${ldmcfg.background}
${cfg.extraConfig}
'';

in
Expand Down Expand Up @@ -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.
'';
};

};

};
Expand Down

0 comments on commit a4b4cd0

Please sign in to comment.