forked from DGNum/colmena
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:
commit
31d8240504
1 changed files with 1 additions and 1 deletions
|
@ -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 = [];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue