From f8a0c6a50c35c75bf2c45902c914378a9960cf4e Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Sun, 4 May 2025 16:34:55 +0200 Subject: [PATCH] default: properly set outPath when evaluating in store --- default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 998d023..9cd1637 100644 --- a/default.nix +++ b/default.nix @@ -37,7 +37,8 @@ let selfInStore = if selfInStore'.success then selfInStore'.value else gitlessSelfInStore; in if !(evaluatingInStore) then { ... }@args: import selfInStore ({ - selfPath = selfInStore // { + selfPath = { + outPath = builtins.toString ./.; selfMode = "store"; }; } // args )