From 4df5b6a1fed6adebe34a3061323620f68d60e435 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 20 May 2024 21:08:43 -0400 Subject: [PATCH] global/nix: explicitly allow import from derivation --- modules/global/nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index dff852a..d66ce34 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -13,6 +13,7 @@ with lib; system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; experimental-features = [ "flakes" "nix-command" "impure-derivations" "no-url-literals" ]; + allow-import-from-derivation = true; auto-optimise-store = true; fallback = true; keep-derivations = true;