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

36 lines
945 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;
2022-10-17 11:51:03 +00:00
ed25519PublicKey = "fZi75omD1Z2vZYH7FleZ+ygKLqGj2emlLMvw3XcmZPM";
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:29:36 +00:00
macbooknix = {
2022-10-17 11:01:57 +00:00
subnetAddr = "11.0.0.4";
ed25519PublicKey = "6MN5LVE4juavv8qJW2dTN4t/haKCADWquAQj/ADF7iN";
};
2024-07-23 16:26:27 +00:00
yoga = {
subnetAddr = "11.0.0.5";
ed25519PublicKey = "n+gIZjuuTPxi0OBqw2oOcmXd3loOHG+GQHBMXNlgyqI";
};
2024-08-15 16:37:13 +00:00
framework = {
subnetAddr = "11.0.0.6";
ed25519PublicKey = "YL7NA6Ydv/3FBfSzOPvyHlGweAViPvsG3b0Zh8L0NzF";
};
2021-10-28 20:07:49 +00:00
}