1
0
Fork 0

lib/flake-helper: Ignore all hosts which name starts with an underscore for hydra

This commit is contained in:
clerie 2023-04-16 15:50:10 +02:00
parent f62ceb8d2f
commit 24c2e1738a
1 changed files with 1 additions and 1 deletions

View File

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