Files
LillyOS/modules/desktop/hyprland.nix
2026-01-05 04:04:42 +01:00

12 lines
388 B
Nix

{ inputs, pkgs, ...}:
{
programs.hyprland = {
enable = true;
# set the flake package
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# make sure to also set the portal package, so that they are in sync
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
withUWSM = true;
};
}