From 9adbb578089d5f623a66561d284644da9076e92a Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Mon, 12 Feb 2024 13:58:19 +0100 Subject: [PATCH] fixup! Fix the "option `nix.settings` does not exist" error --- lib/builders/modules/nix-nod/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/builders/modules/nix-nod/default.nix b/lib/builders/modules/nix-nod/default.nix index f1d7c5ab..3895b0e7 100644 --- a/lib/builders/modules/nix-nod/default.nix +++ b/lib/builders/modules/nix-nod/default.nix @@ -9,6 +9,8 @@ in lib.recursiveUpdate nixCommons { nix = { + inherit (nixSubstituters) substituters; + trustedPublicKeys = nixSubstituters.trusted-public-keys; nixPath = [ "nixpkgs=flake:nixpkgs" ]; - } // nixSubstituters; + }; }