From 149d7af05a6e64f7af552890e56199a517ec5d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Sat, 26 Feb 2022 09:55:00 +0100 Subject: [PATCH] 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 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d4245443..ab58da27 100644 --- a/flake.nix +++ b/flake.nix @@ -75,7 +75,7 @@ rec { ({ name, system }: { inherit name; value = { - ${system} = nixosConfigurations.${name}; + ${system} = nixosConfigurations.${name}.config.system.build.toplevel; }; }) systems);