mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 16:19:44 +01:00
screen-locker: Add extraOptions for xss-lock and xautolock
This commit is contained in:
parent
9141d11a7d
commit
9a3b1ec222
1 changed files with 20 additions and 2 deletions
|
@ -26,6 +26,23 @@ in {
|
||||||
See <link xlink:href="https://linux.die.net/man/1/xautolock"/>.
|
See <link xlink:href="https://linux.die.net/man/1/xautolock"/>.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xautolockExtraOptions = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [];
|
||||||
|
description = ''
|
||||||
|
Extra command-line arguments to pass to <command>xautolock</command>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
xssLockExtraOptions = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [];
|
||||||
|
description = ''
|
||||||
|
Extra command-line arguments to pass to <command>xss-lock</command>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -45,7 +62,8 @@ in {
|
||||||
${pkgs.xautolock}/bin/xautolock \
|
${pkgs.xautolock}/bin/xautolock \
|
||||||
-detectsleep \
|
-detectsleep \
|
||||||
-time ${toString cfg.inactiveInterval} \
|
-time ${toString cfg.inactiveInterval} \
|
||||||
-locker '${pkgs.systemd}/bin/loginctl lock-session $XDG_SESSION_ID'
|
-locker '${pkgs.systemd}/bin/loginctl lock-session $XDG_SESSION_ID' \
|
||||||
|
${concatStringsSep " " cfg.xautolockExtraOptions}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -53,7 +71,7 @@ in {
|
||||||
# xss-lock will run specified screen locker when the session is locked via loginctl
|
# xss-lock will run specified screen locker when the session is locked via loginctl
|
||||||
# can't be started as a systemd service,
|
# can't be started as a systemd service,
|
||||||
# see https://bitbucket.org/raymonad/xss-lock/issues/13/allow-operation-as-systemd-user-unit
|
# see https://bitbucket.org/raymonad/xss-lock/issues/13/allow-operation-as-systemd-user-unit
|
||||||
xsession.initExtra = "${pkgs.xss-lock}/bin/xss-lock -- ${cfg.lockCmd} &";
|
xsession.initExtra = "${pkgs.xss-lock}/bin/xss-lock ${concatStringsSep " " cfg.xssLockExtraOptions} -- ${cfg.lockCmd} &";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue