about summary refs log tree commit diff
path: root/machines/srv3/yggdrasil.nix
blob: 0d0291f48bba2e963359fed50a5f9ed16f721c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  services.yggdrasil = {
    enable = true;
    persistentKeys = true;
    config = {
      Peers = [
        "tcp://51.75.44.73:50001"
        "tcp://176.223.130.120:22632"
      ];
    };
  };
}