Add tinc hosts into /etc/hosts
This commit is contained in:
parent
146dedcdd4
commit
5baac9ff29
|
@ -21,5 +21,12 @@ in
|
||||||
settings.Ed25519PublicKey = mkIf (host ? "ed25519PublicKey") host.ed25519PublicKey;
|
settings.Ed25519PublicKey = mkIf (host ? "ed25519PublicKey") host.ed25519PublicKey;
|
||||||
})
|
})
|
||||||
hosts;
|
hosts;
|
||||||
|
|
||||||
|
# Add all of them to host
|
||||||
|
networking.extraHosts = lib.strings.concatStringsSep
|
||||||
|
"\n"
|
||||||
|
(lib.attrsets.mapAttrsToList
|
||||||
|
(name: host: "${host.subnetAddr} ${name}.tinc")
|
||||||
|
hosts);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue