dotfiles/nixos/modules/hyprland/wayland.nix
2025-02-03 02:00:27 -06:00

20 lines
386 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
xdg-desktop-portal-hyprland
xdg-desktop-portal-wlr
;
};
};
};
}