universe/host/programs/graphical/hyprland.nix

16 lines
315 B
Nix
Raw Normal View History

2025-03-14 16:40:36 +00:00
{
inputs,
system,
lib,
config,
...
}: {
config = lib.mkIf config.universe.de.hyprland.enable {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${system}.hyprland;
portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland;
};
};
}