dotfiles/nixos/modules/hyprland/wayland.nix

21 lines
386 B
Nix
Raw Normal View History

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