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 }: {
|
||||
inherit name;
|
||||
value = {
|
||||
${system} = nixosConfigurations.${name};
|
||||
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
|
||||
};
|
||||
})
|
||||
systems);
|
||||
|
|
Loading…
Reference in a new issue