eval.nix: Make the uninitialized nixpkgs error more informative
This commit is contained in:
parent
f716daa3a1
commit
006cb2c5ee
1 changed files with 4 additions and 5 deletions
|
@ -293,16 +293,15 @@ let
|
|||
|
||||
mkNixpkgs = configName: pkgConf: let
|
||||
uninitializedError = typ: ''
|
||||
Passing ${typ} is no longer accepted with Flakes. Please initialize Nixpkgs like the following:
|
||||
Passing ${typ} as ${configName} is no longer accepted with Flakes.
|
||||
Please initialize Nixpkgs like the following:
|
||||
|
||||
{
|
||||
# ...
|
||||
outputs = { nixpkgs, ... }: {
|
||||
colmena = {
|
||||
meta = {
|
||||
nixpkgs = import nixpkgs {
|
||||
system = "${currentSystem}";
|
||||
};
|
||||
${configName} = import nixpkgs {
|
||||
system = "${currentSystem}";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue