From a40192bb99552d495db3869fa877ff8badd7c080 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Tue, 12 Aug 2025 12:02:34 +0000 Subject: [PATCH] fix(nix): xdg portal config --- nix/hosts/framework/sys.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/hosts/framework/sys.nix b/nix/hosts/framework/sys.nix index d6c9b80..c6e1672 100644 --- a/nix/hosts/framework/sys.nix +++ b/nix/hosts/framework/sys.nix @@ -94,6 +94,12 @@ # Display Manager services.displayManager.autoLogin.user = "priime"; + xdg.portal = { + enable = true; + extraPortals = [ pkgs.xdg-desktop-portal-wlr ]; + config.common.default = "wlr"; + }; + # Mouse services.libinput.mouse = { middleEmulation = false; };