···11+{ inputs, pkgs, ... }:
22+{
33+ programs.hyprland = {
44+ enable = true;
55+ # set the flake package
66+ package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
77+ # make sure to also set the portal package, so that they are in sync
88+ portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
99+ };
1010+}