From 55977ec0fb8b64c3dca7e2237a5d23a48d1eded1 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Fri, 3 Jul 2020 06:03:35 +0200 Subject: [PATCH] Fix test path --- overlays/testing.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/testing.nix b/overlays/testing.nix index b60980f3..caf437fa 100644 --- a/overlays/testing.nix +++ b/overlays/testing.nix @@ -26,7 +26,7 @@ in { name = "test-system-config"; inherit bins; inherit imports; - } (haskellBody "system" ''nix_build $ ["", "-A", "system"] ++ paths ++ ["-I", [i|nixos-config=#{configDir}nixos/machines#{hostname}/configuration.nix|], "-o", [i|result-system-#{hostname}|]] ++ fmap toString args''); + } (haskellBody "system" ''nix_build $ ["", "-A", "system"] ++ paths ++ ["-I", [i|nixos-config=#{configDir}/nixos/machines/#{hostname}/configuration.nix|], "-o", [i|result-system-#{hostname}|]] ++ fmap toString args''); test-home-config = self.writeHaskellScript { name = "test-home-config";