mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
478e7184f8
And replace them with a more appropriate type Also fix up some minor module problems along the way
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.xss-lock;
|
|
in
|
|
{
|
|
options.programs.xss-lock = {
|
|
enable = mkEnableOption "xss-lock";
|
|
|
|
lockerCommand = mkOption {
|
|
default = "${pkgs.i3lock}/bin/i3lock";
|
|
example = literalExample ''''${pkgs.i3lock-fancy}/bin/i3lock-fancy'';
|
|
type = types.separatedString " ";
|
|
description = "Locker to be used with xsslock";
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
default = [ ];
|
|
example = [ "--ignore-sleep" ];
|
|
type = types.listOf types.str;
|
|
description = ''
|
|
Additional command-line arguments to pass to
|
|
<command>xss-lock</command>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.user.services.xss-lock = {
|
|
description = "XSS Lock Daemon";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
serviceConfig.ExecStart = with lib;
|
|
strings.concatStringsSep " " ([
|
|
"${pkgs.xss-lock}/bin/xss-lock"
|
|
] ++ (map escapeShellArg cfg.extraOptions) ++ [
|
|
"--"
|
|
cfg.lockerCommand
|
|
]);
|
|
};
|
|
};
|
|
}
|