nix-conf/system/modules/hyprland.nix
2024-12-23 13:42:40 +08:00

28 lines
431 B
Nix

{ pkgs, ... }:
{
programs.hyprland = { enable = true; };
environment.systemPackages = with pkgs; [
hyprsunset
hyprpaper
hyprpicker
hyprshot
kitty
# Notification
libnotify
swaynotificationcenter
qt5.qtwayland
qt6.qtwayland
swayidle
sway-audio-idle-inhibit # Prevent idle when playing audio
swaylock-effects
wlogout
wl-clipboard
wofi
rofi
waybar
];
}