dotfiles/nixos/modules/hyprland/wayland.nix
2025-02-01 23:30:06 -06:00

18 lines
315 B
Nix
Executable file

{ pkgs, flake, ... }:
{
environment.sessionVariables.NIXOS_OZONE_WL = "1";
xdg = {
portal = {
enable = true;
wlr.enable = true;
xdgOpenUsePortal = true;
extraPortals = builtins.attrValues {
inherit (pkgs)
xdg-desktop-portal-gtk
;
};
};
};
}