dotfiles/nixos/modules/wayland.nix
2025-01-08 01:05:45 -06:00

22 lines
421 B
Nix
Executable file

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