diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-19 07:44:46 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-19 07:44:46 -0600 |
| commit | 55d12269daddc3648eae5d236756059191834431 (patch) | |
| tree | 1fd86605cd40e869cefd760b67d8a2440f7ff782 /hosts/mercury/config.nix | |
| parent | d6c4bd6d87d31a2c688fb2fcfdb0cb15d8f9163d (diff) | |
initial wireguard setup
Diffstat (limited to 'hosts/mercury/config.nix')
| -rw-r--r-- | hosts/mercury/config.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/hosts/mercury/config.nix b/hosts/mercury/config.nix index f996be9..712c1aa 100644 --- a/hosts/mercury/config.nix +++ b/hosts/mercury/config.nix @@ -12,14 +12,13 @@ ip = "100.100.0.5"; gateway = "100.100.0.1"; privateKeyFile = config.collinux.secrets."wg-key".path; - peers = [ - { - # ganymede + peers = { + "ganymede" = { publicKey = "WNLf8M6JGSHeRVvbAF6E/6oxAHeNxv6bXqqlmwMdvlk="; ip = "100.100.0.0/24"; endpoint = "williamsfam.us.com:51820"; - } - ]; + }; + }; }; desktop = { @@ -52,7 +51,7 @@ networking = { enable = true; iwd.enable = true; - tailscale.enable = true; + # tailscale.enable = true; }; bluetooth = { enable = true; |
