1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 18:16:21 +03:00
nixpkgs/nixos/modules/services/x11/window-managers/qtile.nix

80 lines
1.9 KiB
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}:
2015-07-30 07:31:53 +02:00
with lib;
let
cfg = config.services.xserver.windowManager.qtile;
in
{
imports = [
(mkRemovedOptionModule [
"services"
"xserver"
"windowManager"
"qtile"
"backend"
] "The qtile package now provides separate display sessions for both X11 and Wayland.")
];
2022-04-05 10:44:03 -07:00
options.services.xserver.windowManager.qtile = {
enable = mkEnableOption "qtile";
2022-04-05 10:44:03 -07:00
package = mkPackageOption pkgs "qtile-unwrapped" { };
configFile = mkOption {
type = with types; nullOr path;
default = null;
example = literalExpression "./your_config.py";
description = ''
Path to the qtile configuration file.
If null, $XDG_CONFIG_HOME/qtile/config.py will be used.
'';
};
extraPackages = mkOption {
type = types.functionTo (types.listOf types.package);
default = _: [ ];
defaultText = literalExpression ''
python3Packages: with python3Packages; [];
'';
description = ''
Extra Python packages available to Qtile.
An example would be to include `python3Packages.qtile-extras`
for additional unofficial widgets.
'';
example = literalExpression ''
python3Packages: with python3Packages; [
qtile-extras
];
'';
};
finalPackage = mkOption {
type = types.package;
visible = false;
readOnly = true;
description = "The resulting Qtile package, bundled with extra packages";
};
2015-07-30 07:31:53 +02:00
};
config = mkIf cfg.enable {
services = {
xserver.windowManager.qtile.finalPackage = pkgs.python3.pkgs.qtile.override {
extraPackages = cfg.extraPackages pkgs.python3.pkgs;
};
displayManager.sessionPackages = [ cfg.finalPackage ];
};
environment = {
etc."xdg/qtile/config.py" = mkIf (cfg.configFile != null) { source = cfg.configFile; };
systemPackages = [ cfg.finalPackage ];
};
2015-07-30 07:31:53 +02:00
};
}