2025-02-01 19:13:39 -06:00
|
|
|
{ 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;
|
2025-02-01 19:13:39 -06:00
|
|
|
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-04 14:06:49 -06:00
|
|
|
# xdg-desktop-portal-hyprland
|
2025-02-03 02:00:27 -06:00
|
|
|
xdg-desktop-portal-wlr
|
2025-01-08 01:05:45 -06:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2025-02-01 19:13:39 -06:00
|
|
|
|
2025-01-08 01:05:45 -06:00
|
|
|
}
|