36 lines
945 B
Nix
36 lines
945 B
Nix
{
|
|
# TODO: Edit the list of hosts here.
|
|
cloud = {
|
|
subnetAddr = "11.0.0.1";
|
|
address = "nki.personal";
|
|
rsaPublicKey = builtins.readFile ./nki-cloud.pub;
|
|
ed25519PublicKey = "fZi75omD1Z2vZYH7FleZ+ygKLqGj2emlLMvw3XcmZPM";
|
|
};
|
|
|
|
home = {
|
|
subnetAddr = "11.0.0.2";
|
|
rsaPublicKey = builtins.readFile ./nki-home.pub;
|
|
ed25519PublicKey = "Ts5OdPtBNLIRfosoYRcb6Z2iwWyOz/VKTKB9J0p5LlH";
|
|
};
|
|
|
|
macbook = {
|
|
subnetAddr = "11.0.0.3";
|
|
rsaPublicKey = builtins.readFile ./nki-macbook.pub;
|
|
ed25519PublicKey = "lkNkBTl5GmcQFrtA7F1nN2gq5gFK7KuGqHUN8fiJU7H";
|
|
};
|
|
macbooknix = {
|
|
subnetAddr = "11.0.0.4";
|
|
ed25519PublicKey = "6MN5LVE4juavv8qJW2dTN4t/haKCADWquAQj/ADF7iN";
|
|
};
|
|
|
|
yoga = {
|
|
subnetAddr = "11.0.0.5";
|
|
ed25519PublicKey = "n+gIZjuuTPxi0OBqw2oOcmXd3loOHG+GQHBMXNlgyqI";
|
|
};
|
|
|
|
framework = {
|
|
subnetAddr = "11.0.0.6";
|
|
ed25519PublicKey = "YL7NA6Ydv/3FBfSzOPvyHlGweAViPvsG3b0Zh8L0NzF";
|
|
};
|
|
}
|