11 lines
228 B
Nix
11 lines
228 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
services.flatpak.enable = true;
|
|
xdg.portal.enable = true;
|
|
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
xdg.portal.config.common.default = "*"; # Use first portal implementation found
|
|
}
|