From 9e9ab22c370f8dc24b6423991bcee7b7f3a20d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 11 Aug 2025 16:31:16 +0200 Subject: [PATCH] skip private inputs again --- flake.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 3b5fcfd13..15406c1cd 100644 --- a/flake.nix +++ b/flake.nix @@ -51,9 +51,12 @@ ; privateInputs = - (import ./devFlake/flake-compat.nix { - src = ./devFlake; - }).outputs; + if builtins.pathExists (./. + ".skip-private-inputs") then + { } + else + (import ./devFlake/flake-compat.nix { + src = ./devFlake; + }).outputs; in flake-parts.lib.mkFlake { inherit inputs; } ( { ... }: