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

Changed files
+10
nixos
modules
services
x11
display-managers
lightdm-greeters
+10
nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix
···
theme-name = ${cfg.theme.name}
icon-theme-name = ${cfg.iconTheme.name}
background = ${ldmcfg.background}
+
${cfg.extraConfig}
'';
in
···
'';
};
+
};
+
+
extraConfig = mkOption {
+
type = types.lines;
+
default = "";
+
description = ''
+
Extra configuration that should be put in the lightdm-gtk-greeter.conf
+
configuration file.
+
'';
};
};