54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
import ../make-test-python.nix (
|
|
{ lib, ... }:
|
|
{
|
|
name = "qtile";
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
};
|
|
|
|
nodes.machine =
|
|
{ pkgs, lib, ... }:
|
|
let
|
|
# We create a custom Qtile configuration file that adds a widget from
|
|
# qtile-extras to the bar. This ensure that the qtile-extras package
|
|
# also works, and that extraPackages behave as expected.
|
|
|
|
config-deriv = pkgs.callPackage ./config.nix { };
|
|
in
|
|
{
|
|
imports = [
|
|
../common/x11.nix
|
|
../common/user-account.nix
|
|
];
|
|
test-support.displayManager.auto.user = "alice";
|
|
|
|
services.xserver.windowManager.qtile = {
|
|
enable = true;
|
|
configFile = "${config-deriv}/config.py";
|
|
extraPackages = ps: [ ps.qtile-extras ];
|
|
};
|
|
|
|
services.displayManager.defaultSession = lib.mkForce "qtile";
|
|
|
|
environment.systemPackages = [ pkgs.kitty ];
|
|
};
|
|
|
|
testScript = ''
|
|
with subtest("ensure x starts"):
|
|
machine.wait_for_x()
|
|
machine.wait_for_file("/home/alice/.Xauthority")
|
|
machine.succeed("xauth merge ~alice/.Xauthority")
|
|
|
|
with subtest("ensure client is available"):
|
|
machine.succeed("qtile --version")
|
|
|
|
with subtest("ensure we can open a new terminal"):
|
|
machine.sleep(2)
|
|
machine.send_key("meta_l-ret")
|
|
machine.wait_for_window(r"alice.*?machine")
|
|
machine.sleep(2)
|
|
machine.screenshot("terminal")
|
|
'';
|
|
}
|
|
)
|