vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / qtile / default.nix
blob718063fa8bb5078bf5aa8777ca272d25e814d32e
1 import ../make-test-python.nix ({ lib, ...} : {
2   name = "qtile";
4   meta = {
5     maintainers = with lib.maintainers; [ sigmanificient ];
6   };
8   nodes.machine = { pkgs, lib, ... }: let
9     # We create a custom Qtile configuration file that adds a widget from
10     # qtile-extras to the bar. This ensure that the qtile-extras package
11     # also works, and that extraPackages behave as expected.
13     config-deriv = pkgs.callPackage ./config.nix { };
14   in {
15     imports = [ ../common/x11.nix ../common/user-account.nix ];
16     test-support.displayManager.auto.user = "alice";
18     services.xserver.windowManager.qtile = {
19       enable = true;
20       configFile = "${config-deriv}/config.py";
21       extraPackages = ps: [ ps.qtile-extras ];
22     };
24     services.displayManager.defaultSession = lib.mkForce "qtile";
26     environment.systemPackages = [ pkgs.kitty ];
27   };
29   testScript = ''
30     with subtest("ensure x starts"):
31         machine.wait_for_x()
32         machine.wait_for_file("/home/alice/.Xauthority")
33         machine.succeed("xauth merge ~alice/.Xauthority")
35     with subtest("ensure client is available"):
36         machine.succeed("qtile --version")
38     with subtest("ensure we can open a new terminal"):
39         machine.sleep(2)
40         machine.send_key("meta_l-ret")
41         machine.wait_for_window(r"alice.*?machine")
42         machine.sleep(2)
43         machine.screenshot("terminal")
44   '';