vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / installed-tests / flatpak.nix
blobfa191202f52d493a4a93ed0bfb9f474d93bf3bb6
1 { pkgs, makeInstalledTest, ... }:
3 makeInstalledTest {
4   tested = pkgs.flatpak;
5   withX11 = true;
7   testConfig = {
8     xdg.portal.enable = true;
9     xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
10     xdg.portal.config.common.default = "gtk";
11     services.flatpak.enable = true;
12     environment.systemPackages = with pkgs; [ gnupg ostree python3 ];
13     virtualisation.memorySize = 2047;
14     virtualisation.diskSize = 3072;
15   };
17   testRunnerFlags = [ "--timeout" "3600" ];