From aebdaa3d099734bdab194bd698c0b45cd2a6bd51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Thu, 12 Jun 2025 00:22:47 +0300 Subject: [PATCH] Declarative jobset fix --- flake.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 4160260..65d83c2 100644 --- a/flake.nix +++ b/flake.nix @@ -75,10 +75,8 @@ ) aarch64-linux-hosts ) ); - hydraJobs = { - inherit (self.nixosConfigurations) - x86_64-hosts - ; - }; + hydraJobs.hosts = builtins.mapAttrs ( + _: host: host.config.system.build.toplevel + ) self.nixosConfigurations; }; }