From d41d54c200eb64012028ef559c97141a56f8566f Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 21 Oct 2024 13:55:44 +0200 Subject: [PATCH] feat: add hydra jobs --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index f82e658..e9df6d3 100644 --- a/flake.nix +++ b/flake.nix @@ -130,6 +130,12 @@ nixosModules = { automapaper = ./modules/automapaper; }; + + hydraJobs = { + lambda.x86_64-linux = self.nixosConfigurations.lambdaOS.config.system.build.toplevel; + nu.x86_64-linux = self.nixosConfigurations.nuOS.config.system.build.toplevel; + mu.x86_64-linux = self.nixosConfigurations.muOS.config.system.build.toplevel; + }; }; }