xdg.portal.config
NixOS option
Sets which portal backend should be used to provide the implementation for the requested interface. For details check portals.conf(5). Configs will be linked to /etc/xdg/xdg-desktop-portal/ with the name $desktop-portals.conf for xdg.portal.config.$desktop and portals.conf for xdg.portal.config.common as an exception.
type: attribute set of attribute set of (string or ((list of string) or string) convertible to it)Default
{ }Example
declared in: nixos/modules/config/xdg/portal.nixView source on NixOS/nixpkgs →{
common = {
default = [
"gtk"
];
};
pantheon = {
default = [
"pantheon"
"gtk"
];
"org.freedesktop.impl.portal.Secret" = [
"gnome-keyring"
];
};
x-cinnamon = {
default = [
"xapp"
"gtk"
];
};
}