From cd846260e440b3ae197854c454af49e46d100e0c Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 18 Jul 2024 12:18:12 +0200 Subject: [PATCH] flake: add buildbot jobs entrypoints Signed-off-by: Raito Bezarius --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index a5a662a..352985a 100644 --- a/flake.nix +++ b/flake.nix @@ -110,5 +110,6 @@ } // builders; hydraJobs = builtins.mapAttrs (n: v: v.config.system.build.toplevel) self.nixosConfigurations; + buildbotJobs = builtins.mapAttrs (_: v: v.config.system.build.toplevel) self.nixosConfigurations; }; }