From df674042972cfda819cb5ade6b52cc341f1952e6 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Mon, 6 Oct 2025 13:34:19 +0200 Subject: [PATCH] simplify out intersection Signed-off-by: Kiara Grouwstra --- 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; })