From a02c07428f8e385ca9e84fcfe36a6d8219089733 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Mon, 26 Jun 2023 22:09:25 -0700 Subject: [PATCH] Xdg portals --- modules/hyprland/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/hyprland/default.nix b/modules/hyprland/default.nix index 9bd3019..2395be3 100644 --- a/modules/hyprland/default.nix +++ b/modules/hyprland/default.nix @@ -28,6 +28,14 @@ in { trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ]; }; + xdg.portal = { + enable = true; + wlr.enable = true; + extraPortals = with pkgs; [ + xdg-desktop-portal-kde + ]; + }; + home-manager.users.${config.main-user} = { imports = [ hyprland.homeManagerModules.default ];