remove xdg portal conf bc that, apparently, works better

This commit is contained in:
Schrottkatze 2025-03-27 00:06:06 +01:00
parent 38ace717a7
commit 2de0639d54
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
2 changed files with 0 additions and 18 deletions

View file

@ -2,7 +2,6 @@
imports = [
./audio.nix
./eduroam.nix
./xdg-portals.nix
./home
./media
./dm.nix

View file

@ -1,17 +0,0 @@
{pkgs, ...}: {
services.gnome.gnome-keyring.enable = true;
xdg.portal = {
enable = true;
config.common = {
default = ["gtk"];
"org.freedesktop.impl.portal.Screencast" = ["gnome"];
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
};
extraPortals = [
pkgs.xdg-desktop-portal-gnome
pkgs.xdg-desktop-portal-gtk
];
};
}