mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
26 lines
659 B
Nix
26 lines
659 B
Nix
|
import ./make-test.nix ({ pkgs, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
name = "xss-lock";
|
||
|
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ma27 ];
|
||
|
|
||
|
machine = {
|
||
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
||
|
programs.xss-lock.enable = true;
|
||
|
programs.xss-lock.lockerCommand = "${pkgs.xlockmore}/bin/xlock";
|
||
|
services.xserver.displayManager.auto.user = "alice";
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
$machine->start;
|
||
|
$machine->waitForX;
|
||
|
$machine->waitForUnit("xss-lock.service", "alice");
|
||
|
|
||
|
$machine->fail("pgrep xlock");
|
||
|
$machine->succeed("su -l alice -c 'xset dpms force standby'");
|
||
|
$machine->succeed("pgrep xlock");
|
||
|
'';
|
||
|
})
|