From fd49868cda8ebc4dc312b6e0cf3a1f60c8f5bd66 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Mon, 6 Oct 2025 13:35:58 +0200 Subject: [PATCH] simplify out intersection (#537) Reviewed-on: https://git.fediversity.eu/fediversity/fediversity/pulls/537 --- deployment/run/tf-single-host/tf-env.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/run/tf-single-host/tf-env.nix b/deployment/run/tf-single-host/tf-env.nix index 68ad111e..4f445222 100644 --- a/deployment/run/tf-single-host/tf-env.nix +++ b/deployment/run/tf-single-host/tf-env.nix @@ -10,7 +10,7 @@ pkgs.stdenv.mkDerivation { toSource { root = ../../../.; # don't copy ignored files - fileset = intersection (gitTracked ../../../.) ../../../.; + fileset = gitTracked ../../../.; }; buildInputs = [ (pkgs.callPackage ./tf.nix { inherit sources; })