universe/hosts/common/programs/graphical/hyprland.nix

12 lines
226 B
Nix
Raw Normal View History

2025-03-02 19:00:20 +00:00
{
inputs,
system,
...
}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${system}.hyprland;
portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland;
};
}