Natsu Kagami
466f5f1e90
nki-home tinc working Don't route tinc through vpn Don't do it lol Integrate home-manager Merge nki-home/flake into main flake Add MacOS clipboard compat Make VPN input a secret
21 lines
517 B
Nix
21 lines
517 B
Nix
{
|
|
# TODO: Edit the list of hosts here.
|
|
cloud = {
|
|
subnetAddr = "11.0.0.1";
|
|
address = "nki.personal";
|
|
rsaPublicKey = builtins.readFile ./nki-cloud.pub;
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|