nix-conf/system/modules/hyprland.nix
2024-12-14 16:55:50 +08:00

25 lines
353 B
Nix

{ config, pkgs, ... }:
{
programs.hyprland = { enable = true; };
environment.systemPackages = with pkgs; [
hyprsunset
hyprpaper
hyprshot
kitty
# Notification
libnotify
swaynotificationcenter
qt5.qtwayland
qt6.qtwayland
swayidle
swaylock-effects
wlogout
wl-clipboard
wofi
waybar
];
}