9 lines
149 B
Nix
9 lines
149 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
programs.hyprland = {
|
||
|
enable = true;
|
||
|
xwayland.enable = true;
|
||
|
portalPackage = pkgs.xdg-desktop-portal-hyprland;
|
||
|
};
|
||
|
}
|