nixos: systemd-logind: use cfg shorthand

This commit is contained in:
Bob van der Linden 2022-03-17 23:13:27 +01:00
parent c647002a94
commit e2cb8903da
No known key found for this signature in database
GPG key ID: EEBE8E3EC4A31364

View file

@ -3,6 +3,8 @@
with lib; with lib;
let let
cfg = config.services.logind;
logindHandlerType = types.enum [ logindHandlerType = types.enum [
"ignore" "poweroff" "reboot" "halt" "kexec" "suspend" "ignore" "poweroff" "reboot" "halt" "kexec" "suspend"
"hibernate" "hybrid-sleep" "suspend-then-hibernate" "lock" "hibernate" "hybrid-sleep" "suspend-then-hibernate" "lock"
@ -61,7 +63,7 @@ in
}; };
services.logind.lidSwitchExternalPower = mkOption { services.logind.lidSwitchExternalPower = mkOption {
default = config.services.logind.lidSwitch; default = cfg.lidSwitch;
defaultText = literalExpression "services.logind.lidSwitch"; defaultText = literalExpression "services.logind.lidSwitch";
example = "ignore"; example = "ignore";
type = logindHandlerType; type = logindHandlerType;
@ -90,11 +92,11 @@ in
environment.etc = { environment.etc = {
"systemd/logind.conf".text = '' "systemd/logind.conf".text = ''
[Login] [Login]
KillUserProcesses=${if config.services.logind.killUserProcesses then "yes" else "no"} KillUserProcesses=${if cfg.killUserProcesses then "yes" else "no"}
HandleLidSwitch=${config.services.logind.lidSwitch} HandleLidSwitch=${cfg.lidSwitch}
HandleLidSwitchDocked=${config.services.logind.lidSwitchDocked} HandleLidSwitchDocked=${cfg.lidSwitchDocked}
HandleLidSwitchExternalPower=${config.services.logind.lidSwitchExternalPower} HandleLidSwitchExternalPower=${cfg.lidSwitchExternalPower}
${config.services.logind.extraConfig} ${cfg.extraConfig}
''; '';
}; };