diff --git a/roles/hyprland.nix b/roles/hyprland.nix new file mode 100644 index 0000000..dd4d29b --- /dev/null +++ b/roles/hyprland.nix @@ -0,0 +1,23 @@ +{ lib, pkgs, config, ... }: +{ + imports = [ + ./desktop-common.nix + ]; + + programs.hyprland = { + enable = true; + enableNvidiaPatches = true; + xwayland.enable = true; + }; + + environment.systemPackages = with pkgs; [ + kitty + dunst + polkit-kde-agent + eww + hyprpaper + rofi + hyprpicker + udiskie + ]; +}