Files
nixy/nixos/hyprland.nix
2025-07-16 19:25:32 +02:00

14 lines
283 B
Nix

{
inputs,
pkgs,
...
}: {
programs.hyprland = {
enable = true;
withUWSM = true;
package = inputs.hyprland.packages."${pkgs.system}".hyprland;
portalPackage =
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}