oizys/modules/window-managers/qtile.nix

42 lines
501 B
Nix
Raw Normal View History

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