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

25 lines
641 B
Nix
Raw Normal View History

2021-10-28 20:07:49 +00:00
{
# TODO: Edit the list of hosts here.
2021-10-28 21:05:06 +00:00
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
home = {
subnetAddr = "11.0.0.2";
rsaPublicKey = builtins.readFile ./nki-home.pub;
ed25519PublicKey = "Ts5OdPtBNLIRfosoYRcb6Z2iwWyOz/VKTKB9J0p5LlH";
};
2021-10-28 21:05:06 +00:00
macbook = {
2021-10-28 20:47:07 +00:00
subnetAddr = "11.0.0.3";
rsaPublicKey = builtins.readFile ./nki-macbook.pub;
ed25519PublicKey = "lkNkBTl5GmcQFrtA7F1nN2gq5gFK7KuGqHUN8fiJU7H";
2021-10-28 21:05:35 +00:00
};
2022-10-17 11:01:57 +00:00
macbook-nixos = {
subnetAddr = "11.0.0.4";
ed25519PublicKey = "6MN5LVE4juavv8qJW2dTN4t/haKCADWquAQj/ADF7iN";
};
2021-10-28 20:07:49 +00:00
}