lib/flake-helper: Ignore all hosts which name starts with an underscore for hydra
This commit is contained in:
parent
f62ceb8d2f
commit
24c2e1738a
@ -40,5 +40,5 @@ rec {
|
||||
|
||||
mapToColmenaHosts = hosts: builtins.mapAttrs (generateColmenaHost) hosts;
|
||||
|
||||
buildHosts = hosts: builtins.mapAttrs (name: host: host.config.system.build.toplevel) hosts;
|
||||
buildHosts = hosts: builtins.mapAttrs (name: host: host.config.system.build.toplevel) (nixpkgs.lib.filterAttrs (name: host: (builtins.substring 0 1 name) != "_") hosts);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user