wm/portal: cleanup

This commit is contained in:
Bloxx12 2025-07-18 23:40:43 +02:00
commit 89ca8e59b3
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw

View file

@ -15,14 +15,19 @@ in {
# or with unexpected env vars set from wrappers. # or with unexpected env vars set from wrappers.
# See #160923 for more info. # See #160923 for more info.
xdgOpenUsePortal = true; xdgOpenUsePortal = true;
extraPortals = extraPortals = [
[
pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-gtk
pkgs.kdePackages.xdg-desktop-portal-kde pkgs.kdePackages.xdg-desktop-portal-kde
pkgs.kdePackages.kwallet pkgs.kdePackages.kwallet
pkgs.xdg-desktop-portal-gnome pkgs.xdg-desktop-portal-gnome
]; ];
config = { config = {
common = {
"org.freedesktop.impl.portal.Secret" = [
"kwallet"
];
"org.freedesktop.secrets" = ["kwalletd6"];
};
niri = { niri = {
default = [ default = [
"gnome" "gnome"
@ -37,6 +42,4 @@ in {
}; };
}; };
}; };
environment.variables = {
};
} }