-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"'allow-import-from-derivation' is disabled" error #34
Comments
Unfortunately this is a problem with IFD in flakes. There are a couple things on the Nix issue tracker that talk about this, as well as a few posts on Discourse:
If you'd like diff --git a/flake.nix b/flake.nix
index a15d0ce..192bdf6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,5 +30,5 @@
};
};
in
- { inherit overlay; } // inputs.flake-utils.lib.eachDefaultSystem perSystem;
+ { inherit overlay; } // inputs.flake-utils.lib.eachSystem [ "x86_64-linux" ] perSystem;
} With this change,
Since this is more of an upstream Nix problem, I'll go ahead and close this! |
@cdepillabout |
I'm new to nix, so I don't know if this is an error or intended, but when I try to run
nix flake show
,I get the error
'allow-import-from-derivation' is disabled
.The text was updated successfully, but these errors were encountered: