diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-27 16:43:58 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-27 16:43:58 -0400 |
commit | f250dda0b8df0e37453eb3e70f52b31ff05ae4cf (patch) | |
tree | aa0a771d00512e55ea6d9202528ca77ad283fecc /modules/desktops/wayland.nix | |
parent | fmt (diff) | |
download | dotfiles-nix-f250dda0b8df0e37453eb3e70f52b31ff05ae4cf.tar.gz dotfiles-nix-f250dda0b8df0e37453eb3e70f52b31ff05ae4cf.tar.bz2 dotfiles-nix-f250dda0b8df0e37453eb3e70f52b31ff05ae4cf.zip |
fix xdg.portal after refactor
Diffstat (limited to '')
-rw-r--r-- | modules/desktops/wayland.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/desktops/wayland.nix b/modules/desktops/wayland.nix index ceef20a..600651f 100644 --- a/modules/desktops/wayland.nix +++ b/modules/desktops/wayland.nix @@ -10,10 +10,13 @@ in { config = mkIf cfg.wayland { xdg.portal = { enable = true; - wlr.enable = true; - extraPortals = [ - pkgs.xdg-desktop-portal-wlr + xdgOpenUsePortal = true; + extraPortals = with pkgs; [ + xdg-desktop-portal-gtk ]; + config = { + default.common = ["gtk"]; + }; }; programs.xwayland.enable = true; |