project-wide: Moving to tf-nix for traditional hosts

This commit is contained in:
kat witch 2021-03-29 02:49:45 +01:00
parent 4ad12c96fa
commit 69c2dcf7f2
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
8 changed files with 47 additions and 107 deletions

View file

@ -35,6 +35,6 @@ rec {
groups = listToAttrs (map (groupName:
nameValuePair groupName
(filter (host: elem groupName host.config.deploy.groups)
(attrValues hosts))) groupNames);
(attrNames (filterAttrs (name: host: elem groupName host.config.deploy.groups)
hosts))) groupNames);
}