depot/third_party/home-manager/tests/modules/services/screen-locker/no-xautolock.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

24 lines
625 B
Nix

{ config, pkgs, ... }:
{
config = {
services.screen-locker = {
enable = true;
inactiveInterval = 5;
lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c AA0000";
xss-lock = { extraOptions = [ "-test" ]; };
xautolock = { enable = false; };
};
test.stubs.i3lock = { };
test.stubs.xss-lock = { };
nmt.script = ''
xssService=home-files/.config/systemd/user/xss-lock.service
assertFileExists $xssService
assertFileRegex $xssService 'ExecStart=.*/bin/xss-lock.*-test.*i3lock -n -c AA0000'
assertFileRegex $xssService 'ExecStartPre=.*/xset s 300'
'';
};
}