hydra: limit devshells to only main architecture

This commit is contained in:
Christoph Hollizeck 2025-06-12 08:15:44 +02:00
parent e7c0b1f4dc
commit bef0142b8f
Signed by: Daholli
GPG key ID: 249300664F2AF2C7

View file

@ -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;
};
};
}