nixosTests.installed-tests.flatpak-builder: fix tests

This commit fixes the following error:
       Failed assertions:
       - Setting xdg.portal.enable to true requires a portal implementation in xdg.portal.extraPortals such as xdg-desktop-portal-gtk or xdg-desktop-portal-kde.
This commit is contained in:
ElXreno 2022-07-07 20:05:25 +03:00
parent 95f9a70b48
commit 4eeaca86fd
No known key found for this signature in database
GPG Key ID: 635CDB7EE37B4706

View File

@ -6,6 +6,7 @@ makeInstalledTest {
testConfig = {
services.flatpak.enable = true;
xdg.portal.enable = true;
xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
environment.systemPackages = with pkgs; [ flatpak-builder ] ++ flatpak-builder.installedTestsDependencies;
virtualisation.diskSize = 2048;
};