2017-09-20 16:50:49 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.screen-locker;
|
|
|
|
|
|
|
|
in {
|
2023-05-14 12:40:31 +02:00
|
|
|
meta.maintainers = [ hm.maintainers.jrobsonchase hm.maintainers.rszamszur ];
|
2021-10-05 18:58:25 +02:00
|
|
|
|
|
|
|
imports = let
|
|
|
|
origOpt = name: [ "services" "screen-locker" name ];
|
|
|
|
xautolockOpt = name: [ "services" "screen-locker" "xautolock" name ];
|
|
|
|
xssLockOpt = name: [ "services" "screen-locker" "xss-lock" name ];
|
|
|
|
in [
|
|
|
|
(mkRenamedOptionModule (origOpt "xssLockExtraOptions")
|
|
|
|
(xssLockOpt "extraOptions"))
|
|
|
|
(mkRenamedOptionModule (origOpt "xautolockExtraOptions")
|
|
|
|
(xautolockOpt "extraOptions"))
|
|
|
|
(mkRenamedOptionModule (origOpt "enableDetectSleep")
|
|
|
|
(xautolockOpt "detectSleep"))
|
|
|
|
];
|
2017-09-20 16:50:49 +02:00
|
|
|
|
|
|
|
options.services.screen-locker = {
|
|
|
|
enable = mkEnableOption "screen locker for X session";
|
|
|
|
|
|
|
|
lockCmd = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "Locker command to run.";
|
|
|
|
example = "\${pkgs.i3lock}/bin/i3lock -n -c 000000";
|
|
|
|
};
|
|
|
|
|
|
|
|
inactiveInterval = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 10;
|
|
|
|
description = ''
|
|
|
|
Inactive time interval in minutes after which session will be locked.
|
|
|
|
The minimum is 1 minute, and the maximum is 1 hour.
|
2021-10-05 18:58:25 +02:00
|
|
|
If <option>xautolock.enable</option> is true, it will use this setting.
|
2017-09-20 16:50:49 +02:00
|
|
|
See <link xlink:href="https://linux.die.net/man/1/xautolock"/>.
|
2021-10-05 18:58:25 +02:00
|
|
|
Otherwise, this will be used with <command>xset</command> to configure
|
|
|
|
the X server's screensaver timeout.
|
2017-09-20 16:50:49 +02:00
|
|
|
'';
|
|
|
|
};
|
2018-04-29 15:58:42 +02:00
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
xautolock = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = "Use xautolock for time-based locking.";
|
|
|
|
};
|
2017-09-20 16:50:49 +02:00
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.xautolock;
|
|
|
|
description = ''
|
|
|
|
Package providing the <command>xautolock</command> binary.
|
|
|
|
'';
|
2017-09-20 16:50:49 +02:00
|
|
|
};
|
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
detectSleep = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to reset xautolock timers when awaking from sleep.
|
|
|
|
No effect if <option>xautolock.enable</option> is false.
|
|
|
|
'';
|
|
|
|
};
|
2017-09-20 16:50:49 +02:00
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
Extra command-line arguments to pass to <command>xautolock</command>.
|
|
|
|
No effect if <option>xautolock.enable</option> is false.
|
|
|
|
'';
|
2017-09-20 16:50:49 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
xss-lock = {
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.xss-lock;
|
|
|
|
description = ''
|
|
|
|
Package providing the <command>xss-lock</command> binary.
|
|
|
|
'';
|
2020-02-01 19:17:58 +01:00
|
|
|
};
|
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
Extra command-line arguments to pass to <command>xss-lock</command>.
|
|
|
|
'';
|
2020-02-01 19:17:58 +01:00
|
|
|
};
|
2022-04-05 05:32:27 +02:00
|
|
|
|
|
|
|
screensaverCycle = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 600;
|
|
|
|
description = ''
|
2022-11-08 10:13:26 +01:00
|
|
|
The X server's screensaver cycle value expressed as seconds.
|
2022-04-05 05:32:27 +02:00
|
|
|
This will be used with <command>xset</command> to configure
|
|
|
|
the cycle along with timeout.
|
|
|
|
'';
|
|
|
|
};
|
2020-02-01 19:17:58 +01:00
|
|
|
};
|
2017-09-20 16:50:49 +02:00
|
|
|
};
|
|
|
|
|
2021-10-05 18:58:25 +02:00
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{
|
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.screen-locker" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
|
|
|
systemd.user.services.xss-lock = {
|
|
|
|
Unit = {
|
|
|
|
Description = "xss-lock, session locker service";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = concatStringsSep " "
|
|
|
|
([ "${cfg.xss-lock.package}/bin/xss-lock" "-s \${XDG_SESSION_ID}" ]
|
|
|
|
++ cfg.xss-lock.extraOptions ++ [ "-- ${cfg.lockCmd}" ]);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
(mkIf (!cfg.xautolock.enable) {
|
|
|
|
systemd.user.services.xss-lock.Service.ExecStartPre =
|
2022-04-05 05:32:27 +02:00
|
|
|
"${pkgs.xorg.xset}/bin/xset s ${toString (cfg.inactiveInterval * 60)} ${
|
|
|
|
toString cfg.xss-lock.screensaverCycle
|
|
|
|
}";
|
2021-10-05 18:58:25 +02:00
|
|
|
})
|
|
|
|
(mkIf cfg.xautolock.enable {
|
|
|
|
systemd.user.services.xautolock-session = {
|
|
|
|
Unit = {
|
|
|
|
Description = "xautolock, session locker service";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = concatStringsSep " " ([
|
|
|
|
"${cfg.xautolock.package}/bin/xautolock"
|
|
|
|
"-time ${toString cfg.inactiveInterval}"
|
|
|
|
"-locker '${pkgs.systemd}/bin/loginctl lock-session \${XDG_SESSION_ID}'"
|
|
|
|
] ++ optional cfg.xautolock.detectSleep "-detectsleep"
|
|
|
|
++ cfg.xautolock.extraOptions);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
]);
|
2017-09-20 16:50:49 +02:00
|
|
|
}
|