oizys/modules/desktop/window-managers/qtile.nix

41 lines
531 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
pkgs,
2024-01-28 13:25:23 -06:00
config,
lib,
2024-01-23 11:51:13 -06:00
...
2024-05-06 14:32:00 -05:00
}:
let
2024-01-28 13:25:23 -06:00
inherit (lib) mkIf;
cfg = config.services.xserver.windowManager.qtile;
2024-05-06 14:32:00 -05:00
in
{
2024-01-28 13:25:23 -06:00
config = mkIf cfg.enable {
2024-01-28 17:39:10 -06:00
environment.systemPackages = with pkgs; [
brightnessctl
2024-01-23 11:51:13 -06:00
2024-01-28 17:39:10 -06:00
picom
# xorg utils
xdotool
xclip
2024-01-23 11:51:13 -06:00
2024-01-28 17:39:10 -06:00
# xrandr friends
autorandr
arandr
2024-01-23 11:51:13 -06:00
2024-01-28 17:39:10 -06:00
# notifications
libnotify
dunst
2024-01-23 11:51:13 -06:00
2024-01-28 17:39:10 -06:00
# qtile & friends
# qtile
eww
feh
rofi
2024-01-23 11:51:13 -06:00
2024-01-28 17:39:10 -06:00
flameshot
catppuccin-cursors.mochaDark
pavucontrol
];
2024-01-28 13:25:23 -06:00
};
2024-01-23 11:51:13 -06:00
}