9 lines
172 B
Nix
9 lines
172 B
Nix
{ pkgs, ... }: {
|
|
# Add to xsessions
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
portalPackage = pkgs.xdg-desktop-portal-hyprland;
|
|
};
|
|
}
|