Files
nixy/nixos/hyprland.nix
Hadi a056244dd8 fix package panel
Former-commit-id: 6ce19fb663
2025-04-18 14:58:38 +02:00

10 lines
277 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;
};
}