From bef0142b8fd7e70648bfd03d98bdfb5617a5c39e Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Thu, 12 Jun 2025 08:15:44 +0200 Subject: [PATCH] hydra: limit devshells to only main architecture --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 187edde..3904c6b 100644 --- a/flake.nix +++ b/flake.nix @@ -170,7 +170,7 @@ hydraJobs = { hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations; packages = self.packages; - shells = self.devShells; + shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells; }; }; }