16 lines
315 B
Nix
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;
|
|
};
|
|
};
|
|
}
|