From e7e3a61b18708b90475e2e55a676c3378d6ad7fe Mon Sep 17 00:00:00 2001 From: caem Date: Fri, 24 May 2024 22:47:23 +0200 Subject: [PATCH] Additionally add the gtk desktop portal This fixes the file picker for steam --- packages/wm/hyprland.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/wm/hyprland.nix b/packages/wm/hyprland.nix index a352fb9..38026c9 100644 --- a/packages/wm/hyprland.nix +++ b/packages/wm/hyprland.nix @@ -32,5 +32,12 @@ # TODO: switch out the display manager for a tui based one services.displayManager.sddm.enable = true; services.displayManager.sddm.wayland.enable = true; + + xdg.portal = { + enable = true; + extraPortals = with pkgs; [ + xdg-desktop-portal-gtk + ]; + }; }