From e1f58a4306db2fbb7cff87a5eceeb145d6e7683c Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Wed, 15 Nov 2023 18:05:25 +0100 Subject: [PATCH] Add hydra jobs for Nix configuration --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index c26685e..c39e2f2 100644 --- a/flake.nix +++ b/flake.nix @@ -68,5 +68,9 @@ } ) flake-utils.lib.defaultSystems); + + hydraJobs = { + nixos = builtins.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.nixosConfigurations; + }; }; }