2018-05-18 17:24:53 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.xss-lock;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.programs.xss-lock = {
|
|
|
|
enable = mkEnableOption "xss-lock";
|
2019-05-11 17:56:48 +01:00
|
|
|
|
2018-05-18 17:24:53 +01:00
|
|
|
lockerCommand = mkOption {
|
2019-01-04 14:41:51 +00:00
|
|
|
default = "${pkgs.i3lock}/bin/i3lock";
|
|
|
|
example = literalExample ''''${pkgs.i3lock-fancy}/bin/i3lock-fancy'';
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.separatedString " ";
|
2018-05-18 17:24:53 +01:00
|
|
|
description = "Locker to be used with xsslock";
|
|
|
|
};
|
2019-05-11 17:56:48 +01:00
|
|
|
|
|
|
|
extraOptions = mkOption {
|
|
|
|
default = [ ];
|
2019-05-12 02:20:44 +01:00
|
|
|
example = [ "--ignore-sleep" ];
|
2019-05-11 17:56:48 +01:00
|
|
|
type = types.listOf types.str;
|
|
|
|
description = ''
|
|
|
|
Additional command-line arguments to pass to
|
|
|
|
<command>xss-lock</command>.
|
|
|
|
'';
|
|
|
|
};
|
2018-05-18 17:24:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.user.services.xss-lock = {
|
|
|
|
description = "XSS Lock Daemon";
|
|
|
|
wantedBy = [ "graphical-session.target" ];
|
|
|
|
partOf = [ "graphical-session.target" ];
|
2019-05-11 17:56:48 +01:00
|
|
|
serviceConfig.ExecStart = with lib;
|
|
|
|
strings.concatStringsSep " " ([
|
|
|
|
"${pkgs.xss-lock}/bin/xss-lock"
|
2019-05-12 02:20:44 +01:00
|
|
|
] ++ (map escapeShellArg cfg.extraOptions) ++ [
|
2019-05-11 17:56:48 +01:00
|
|
|
"--"
|
|
|
|
cfg.lockerCommand
|
|
|
|
]);
|
2018-05-18 17:24:53 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|