Add default portal to home-manager config

This commit is contained in:
ItsDrike 2024-06-23 14:59:10 +02:00
parent a0b525dc16
commit d3d8ad15b3
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -4,5 +4,11 @@
extraPortals = with pkgs; [ extraPortals = with pkgs; [
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
]; ];
# Specify which portals should be used by the individual interfaces
# see: <https://github.com/flatpak/xdg-desktop-portal/blob/1.18.1/doc/portals.conf.rst.in>
config.common = {
# Use this portal for every interface, unless a specific override is present
default = ["gtk"];
};
}; };
} }