From 1ae70cfe411abab5321cbb0a664a310411ec630e Mon Sep 17 00:00:00 2001 From: Joonas Onatsu Date: Tue, 16 Apr 2024 15:08:50 +0300 Subject: [PATCH] Update nixConfig in flake - Set 'allow-import-from-derivation' in flake, to allow 'nix flake check' to pass succesfully (if the option isn't enabled in global Nix config). Signed-off-by: Joonas Onatsu --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 8725008..fb5c7ad 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,10 @@ ]; }; + nixConfig = { + allow-import-from-derivation = true; + }; + inputs = rec { ghafOS.url = "github:tiiuae/ghaf"; };