fix portal warning

This commit is contained in:
Noa Aarts 2024-06-19 11:44:55 +02:00
parent c5d41aa202
commit 1b837b7e43
2 changed files with 2 additions and 4 deletions

View file

@ -125,10 +125,6 @@
enable = true; enable = true;
createDirectories = true; createDirectories = true;
}; };
portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
}; };

View file

@ -12,5 +12,7 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
xdg.portal.config.common.default = "*";
}; };
} }