From cb68581efe69d0fbc1d719695e77ed27a7062e87 Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Sun, 7 Sep 2025 19:01:40 +0200 Subject: [PATCH] hydra: stop building nixberry, since there are no changes anyways and I need to refactor --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a58f282..bee6e6d 100644 --- a/flake.nix +++ b/flake.nix @@ -174,7 +174,9 @@ self = inputs.self; hydraJobs = { - hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations; + hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) ( + lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations + ); packages = self.packages; shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells; };