1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-25 07:58:31 +02:00

screen-locker: add option enableDetectSleep

Fixes #1125
This commit is contained in:
Robert Helgesson 2020-04-06 19:41:13 +02:00
parent 1fd874b7ea
commit f56c4187a4
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -17,6 +17,14 @@ in {
example = "\${pkgs.i3lock}/bin/i3lock -n -c 000000";
};
enableDetectSleep = mkOption {
type = types.bool;
default = true;
description = ''
Whether to reset timers when awaking from sleep.
'';
};
inactiveInterval = mkOption {
type = types.int;
default = 10;
@ -42,7 +50,6 @@ in {
Extra command-line arguments to pass to <command>xss-lock</command>.
'';
};
};
config = mkIf cfg.enable {
@ -58,10 +65,10 @@ in {
Service = {
ExecStart = concatStringsSep " " ([
"${pkgs.xautolock}/bin/xautolock"
"-detectsleep"
"-time ${toString cfg.inactiveInterval}"
"-locker '${pkgs.systemd}/bin/loginctl lock-session $XDG_SESSION_ID'"
] ++ cfg.xautolockExtraOptions);
] ++ optional cfg.enableDetectSleep "-detectsleep"
++ cfg.xautolockExtraOptions);
};
};