universe/host/programs/graphical/hyprland.nix
2025-03-14 16:40:36 +00:00

16 lines
315 B
Nix

{
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;
};
};
}