Merge pull request #135 from oddlama/main

Remove usage of impure variable `builtins.currentSystem` in eval.nix when using flakes
This commit is contained in:
Zhaofeng Li 2023-02-02 21:58:51 -07:00 committed by GitHub
commit 31d8240504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,7 @@ let
outputs = { nixpkgs, ... }: { outputs = { nixpkgs, ... }: {
colmena = { colmena = {
${configName} = import nixpkgs { ${configName} = import nixpkgs {
system = "${currentSystem}"; system = "x86_64-linux"; # Set your desired system here
overlays = []; overlays = [];
}; };
}; };