From 51c5cb6847d409ee4e6371c95ed983ad4c763e86 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 30 Apr 2026 01:55:02 +0200 Subject: [PATCH] feat: move from `extraPortals` -> `configPortals` for xdg --- modules/core/wayland.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/core/wayland.nix b/modules/core/wayland.nix index ea08b37..ec8d0be 100644 --- a/modules/core/wayland.nix +++ b/modules/core/wayland.nix @@ -10,12 +10,12 @@ }; xdg.portal = { + configPackages = [ pkgs.xdg-desktop-portal-gtk ]; enable = true; wlr.enable = true; xdgOpenUsePortal = true; - extraPortals = [ - pkgs.xdg-desktop-portal-hyprland - pkgs.xdg-desktop-portal-gtk - ]; + # extraPortals = [ + # pkgs.xdg-desktop-portal-hyprland + # ]; }; }