diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-10-18 10:58:27 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-10-18 10:58:27 -0700 |
| commit | 3676f44fe813794b0603dbc82da3149db8fb4e1c (patch) | |
| tree | 842d4e799c33a07bd20062c9cac096dd02f1f8ff /machines/nixos/x86_64-linux/do-rproxy | |
| parent | move the disk configuration for rivendell as a profile (diff) | |
| download | infra-3676f44fe813794b0603dbc82da3149db8fb4e1c.tar.gz | |
configure wireguard for rivendell
Diffstat (limited to 'machines/nixos/x86_64-linux/do-rproxy')
| -rw-r--r-- | machines/nixos/x86_64-linux/do-rproxy/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/machines/nixos/x86_64-linux/do-rproxy/default.nix b/machines/nixos/x86_64-linux/do-rproxy/default.nix index 32005e0..0d74a1f 100644 --- a/machines/nixos/x86_64-linux/do-rproxy/default.nix +++ b/machines/nixos/x86_64-linux/do-rproxy/default.nix @@ -18,10 +18,17 @@ privateKeyFile = config.age.secrets.wireguard.path; peers = [ { + # vm-synology publicKey = "bJZyQoemudGJQox8Iegebm23c4BNVIxRPy1kmI2l904="; allowedIPs = [ "10.100.0.0/24" ]; persistentKeepalive = 25; } + { + # rivendell + publicKey = "jf7T7TMKQWSgSXhUplldZDV9G2y2BjMmHIAhg5d26ng="; + allowedIPs = [ "10.100.0.0/24" ]; + persistentKeepalive = 25; + } ]; }; }; |
