From 1b837b7e43ba0c87cbdb7f89523153737f1acc79 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Wed, 19 Jun 2024 11:44:55 +0200 Subject: [PATCH] fix portal warning --- hosts/default/home.nix | 4 ---- modules/plasma/default.nix | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/hosts/default/home.nix b/hosts/default/home.nix index dba08d7..bee15fb 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -125,10 +125,6 @@ enable = true; createDirectories = true; }; - portal = { - enable = true; - extraPortals = [ pkgs.xdg-desktop-portal-hyprland ]; - }; }; diff --git a/modules/plasma/default.nix b/modules/plasma/default.nix index 35aa358..1a9b377 100644 --- a/modules/plasma/default.nix +++ b/modules/plasma/default.nix @@ -12,5 +12,7 @@ in config = lib.mkIf cfg.enable { services.desktopManager.plasma6.enable = true; + + xdg.portal.config.common.default = "*"; }; }