config/systems/desktop/hyprland.nix

10 lines
269 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{ inputs, pkgs, ... }:
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}