From 42b7de5dd7945301a85c682e41a029089a17914f Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 17 Jun 2026 13:01:13 +0200 Subject: [PATCH] chore: enable gnome-keyring and set extraPortals to be hyprland's portal --- modules/core/wayland.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/core/wayland.nix b/modules/core/wayland.nix index ec8d0be..cb41c44 100644 --- a/modules/core/wayland.nix +++ b/modules/core/wayland.nix @@ -9,13 +9,15 @@ }; }; + services.gnome.gnome-keyring.enable = true; + xdg.portal = { configPackages = [ pkgs.xdg-desktop-portal-gtk ]; enable = true; wlr.enable = true; xdgOpenUsePortal = true; - # extraPortals = [ - # pkgs.xdg-desktop-portal-hyprland - # ]; + extraPortals = [ + pkgs.xdg-desktop-portal-hyprland + ]; }; }