oizys/modules/window-managers/qtile.nix

44 lines
591 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-25 12:23:32 -06:00
imports = with inputs.self.nixosModules; [
lock
2024-01-23 11:51:13 -06:00
];
# Enable the X11 windowing system.
services.xserver = {
enable = true;
displayManager.startx.enable = true;
windowManager.qtile.enable = true;
};
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
];
}