desktop/wm: add qtile-extras
This commit is contained in:
parent
2fa38f40dd
commit
24d529ee6b
3 changed files with 10 additions and 1 deletions
|
@ -67,7 +67,12 @@ in
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
(mkIf cfg.qtile.enable {
|
(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";
|
info.env.wm = "qtile";
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,9 @@ in
|
||||||
hash = "sha256-1mvS/bvXDplkiG7GzDFu9cEFV9onbvNTYbhb4W1qj+0=";
|
hash = "sha256-1mvS/bvXDplkiG7GzDFu9cEFV9onbvNTYbhb4W1qj+0=";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs {
|
||||||
|
doCheck = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
let
|
let
|
||||||
pythonEnv = (pkgs.python3.withPackages (p: with p; [
|
pythonEnv = (pkgs.python3.withPackages (p: with p; [
|
||||||
qtile
|
qtile
|
||||||
|
qtile-extras
|
||||||
]));
|
]));
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue