nix-home/modules/my-tinc/hosts/default.nix

15 lines
355 B
Nix
Raw Normal View History

2021-10-28 20:07:49 +00:00
{
# TODO: Edit the list of hosts here.
2021-10-28 20:35:02 +00:00
nki-cloud = {
2021-10-28 20:47:07 +00:00
subnetAddr = "11.0.0.1";
2021-10-28 20:35:02 +00:00
address = "nki.personal";
2021-10-28 20:47:07 +00:00
rsaPublicKey = builtins.readFile ./nki-cloud.pub;
2021-10-28 20:07:49 +00:00
};
2021-10-28 20:47:07 +00:00
nki-macbook = {
subnetAddr = "11.0.0.3";
rsaPublicKey = builtins.readFile ./nki-macbook.pub;
ed25519PublicKey = "lkNkBTl5GmcQFrtA7F1nN2gq5gFK7KuGqHUN8fiJU7H";
}
2021-10-28 20:07:49 +00:00
}