From 15bb2763ef2ef7b5ffa9a8beddbb2c89e97a39ba Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Fri, 16 Jun 2023 19:19:58 -0400 Subject: [PATCH] Remove manual xdg-portal tweaking --- modules/linux/swaywm.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/linux/swaywm.nix b/modules/linux/swaywm.nix index 8dce743..90a2f40 100644 --- a/modules/linux/swaywm.nix +++ b/modules/linux/swaywm.nix @@ -62,16 +62,5 @@ in with lib; { environment.sessionVariables = { MOZ_ENABLE_WAYLAND = "1"; }; - # Enable the xdg-portal - xdg = { - portal = { - enable = true; - extraPortals = with pkgs; [ - xdg-desktop-portal-wlr - xdg-desktop-portal-gtk - ]; - }; - }; - }; }