dotfiles/nixos/modules/hyprland/wayland.nix

23 lines
415 B
Nix
Raw Normal View History

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