From c8208f42ef7d9a9933baff644e90c89e8830d7d5 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Wed, 10 Jul 2024 19:03:18 +0200 Subject: [PATCH] flake: attempt to fix the hydraJobs definition --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9c4570b..eda094f 100644 --- a/flake.nix +++ b/flake.nix @@ -102,6 +102,6 @@ wob-vpn-gw.imports = commonModules ++ [ ./hosts/wob-vpn-gw ]; } // builders; - hydraJobs = self.nixosConfigurations; + hydraJobs = builtins.mapAttrs (n: v: v.config.system.build.toplevel) self.nixosConfigurations; }; }