fix(flake): don't build __template__
machines
This commit is contained in:
parent
bf2bbb2446
commit
64950f00f3
1 changed files with 10 additions and 8 deletions
|
@ -228,15 +228,17 @@ rec {
|
|||
(builtins.attrValues
|
||||
(builtins.mapAttrs
|
||||
(system: hosts:
|
||||
lib.filterAttrs
|
||||
lib.concatMapAttrs
|
||||
(host: config:
|
||||
config != null)
|
||||
(builtins.mapAttrs
|
||||
(host: config:
|
||||
if (pred system host config)
|
||||
then mkHost system host config
|
||||
else null)
|
||||
hosts))
|
||||
lib.optionalAttrs
|
||||
(and [
|
||||
(host != "__template__")
|
||||
(pred system host config)
|
||||
])
|
||||
{
|
||||
${host} = mkHost system host config;
|
||||
})
|
||||
hosts)
|
||||
machines));
|
||||
|
||||
# Configurations
|
||||
|
|
Loading…
Reference in a new issue