mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
29 lines
915 B
Nix
29 lines
915 B
Nix
|
import ./make-test.nix ({ pkgs, ...} : {
|
||
|
name = "xmonad";
|
||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||
|
maintainers = [ nequissimus ];
|
||
|
};
|
||
|
|
||
|
machine = { lib, pkgs, ... }: {
|
||
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
||
|
services.xserver.displayManager.auto.user = "alice";
|
||
|
services.xserver.windowManager.default = lib.mkForce "xmonad";
|
||
|
services.xserver.windowManager.xmonad = {
|
||
|
enable = true;
|
||
|
enableContribAndExtras = true;
|
||
|
extraPackages = with pkgs.haskellPackages; haskellPackages: [ xmobar ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = { nodes, ... }: ''
|
||
|
$machine->waitForX;
|
||
|
$machine->waitForFile("/home/alice/.Xauthority");
|
||
|
$machine->succeed("xauth merge ~alice/.Xauthority");
|
||
|
$machine->sleep(3);
|
||
|
$machine->sendKeys("alt-shift-ret");
|
||
|
$machine->waitForWindow(qr/machine.*alice/);
|
||
|
$machine->sleep(1);
|
||
|
$machine->screenshot("terminal");
|
||
|
'';
|
||
|
})
|