Qtile

From NixOS Wiki
Revision as of 16:15, 2 October 2022 by imported>Zach-hill (Create initial Qtile page with documentation about enabling)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Qtile is a full-featured, hackable tiling window manager written and configured in Python.

Enabling

To enable Qtile as your windowManager, set: services.xserver.windowManager.qtile.enable to true. For example:

/etc/nixos/configuration.nix
{ config, pkgs, ... }: 
  ...
  services.xserver.windowManager.qtile.enable = true;
  ...
}