flocon/system/programs/hyprland.nix

12 lines
234 B
Nix
Raw Normal View History

2024-12-13 11:03:53 +00:00
{
inputs,
pkgs,
...
}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
};
}