dotfiles/nixos/modules/hyprland/wayland.nix

23 lines
423 B
Nix
Raw Normal View History

2025-01-08 01:05:45 -06:00
{pkgs, ...}: {
environment.sessionVariables.NIXOS_OZONE_WL = "1";
xdg = {
portal = {
enable = true;
extraPortals = builtins.attrValues {
inherit
(pkgs)
2025-01-09 02:09:02 -06:00
# xdg-desktop-portal-hyprland
2025-01-08 01:05:45 -06:00
xdg-desktop-portal-wlr
xdg-desktop-portal-kde
xdg-desktop-portal-gtk
;
};
wlr.enable = true;
xdgOpenUsePortal = true;
};
};
}