From 6a79f6fb711143da795e0416c3dc04ad4d3acf74 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 30 Jul 2019 23:52:25 -0400 Subject: [PATCH] nixosTests.flatpak-builder: enable portals Forgot about this test. Shouldn't fail with an assertion error anymore. --- nixos/tests/flatpak-builder.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/flatpak-builder.nix b/nixos/tests/flatpak-builder.nix index 2100631ec7f..49b97e8ca99 100644 --- a/nixos/tests/flatpak-builder.nix +++ b/nixos/tests/flatpak-builder.nix @@ -9,6 +9,7 @@ import ./make-test.nix ({ pkgs, ... }: machine = { pkgs, ... }: { services.flatpak.enable = true; + xdg.portal.enable = true; environment.systemPackages = with pkgs; [ gnome-desktop-testing flatpak-builder ] ++ flatpak-builder.installedTestsDependencies; virtualisation.diskSize = 2048; };