fix: Fix the hydra job evaluation
This was because I did not pass in .config.system.build.toplevel, but instead the entire nixos config This commit fixes #14
This commit is contained in:
parent
faaceeba91
commit
149d7af05a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ rec {
|
||||||
({ name, system }: {
|
({ name, system }: {
|
||||||
inherit name;
|
inherit name;
|
||||||
value = {
|
value = {
|
||||||
${system} = nixosConfigurations.${name};
|
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
systems);
|
systems);
|
||||||
|
|
Loading…
Reference in a new issue