dotfiles/modules/nixos/desktop/wayland/portals/default.nix
2025-03-29 23:08:26 -05:00

21 lines
423 B
Nix
Executable file

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