1{ pkgs, makeInstalledTest, ... }:
2
3makeInstalledTest {
4 tested = pkgs.flatpak;
5 withX11 = true;
6
7 testConfig = {
8 xdg.portal.enable = true;
9 services.flatpak.enable = true;
10 environment.systemPackages = with pkgs; [ gnupg ostree python3 ];
11 virtualisation.memorySize = 2047;
12 virtualisation.diskSize = 3072;
13 };
14
15 testRunnerFlags = "--timeout 3600";
16}