desktop/wm: add qtile-extras

This commit is contained in:
Infinidoge 2024-09-04 02:13:43 -04:00
parent 2fa38f40dd
commit 24d529ee6b
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
3 changed files with 10 additions and 1 deletions

View file

@ -67,7 +67,12 @@ in
];
}
(mkIf cfg.qtile.enable {
services.xserver.windowManager.qtile.enable = true;
services.xserver.windowManager.qtile = {
enable = true;
extraPackages = p: with p; [
qtile-extras
];
};
info.env.wm = "qtile";

View file

@ -35,6 +35,9 @@ in
hash = "sha256-1mvS/bvXDplkiG7GzDFu9cEFV9onbvNTYbhb4W1qj+0=";
};
});
qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs {
doCheck = false;
};
};
};

View file

@ -6,6 +6,7 @@
let
pythonEnv = (pkgs.python3.withPackages (p: with p; [
qtile
qtile-extras
]));
in
{