nix-conf/system/modules/hyprland.nix
2024-03-26 23:45:56 +04:00

24 lines
365 B
Nix

{ config, pkgs, ... }:
{
programs.hyprland = {
enable = true;
};
environment.systemPackages = with pkgs; [
hyprpaper
kitty
libnotify
mako
nwg-look
qt5.qtwayland
qt6.qtwayland
swayidle
swaylock-effects
wlogout
wl-clipboard
wofi
waybar
xfce.thunar
];
}