diff options
| author | Grigory Shipunov | 2022-05-29 13:39:17 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2022-05-29 13:46:17 +0200 |
| commit | 903ad983139229ea5abb69fd73c137ff46fee7df (patch) | |
| tree | d7407f15862369eaa41802b9122812a28032b584 /modules/wireguard.nix | |
| parent | 9ab470a4193c29716e1fa84ce349af1a34ff8462 (diff) | |
small fixes
Diffstat (limited to 'modules/wireguard.nix')
| -rw-r--r-- | modules/wireguard.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/wireguard.nix b/modules/wireguard.nix index 728f291..9a01f74 100644 --- a/modules/wireguard.nix +++ b/modules/wireguard.nix @@ -3,7 +3,7 @@ { networking.wg-quick.interfaces = { wg-zw = { - privateKeyFile="/root/zw-wg-key"; + privateKeyFile="/etc/wg/zw-wg-key"; address = ["172.20.76.226" ]; dns = [ "172.20.73.8" ]; peers = [ @@ -15,7 +15,7 @@ ]; }; wg-dvb = { - privateKeyFile = "/root/wg-dvb"; + privateKeyFile="/etc/wg/wg-dvb"; address = [ "10.13.37.3/32" ]; peers = [ @@ -29,7 +29,7 @@ }; mlwd-nl = { - privateKeyFile = "/root/mlvd"; + privateKeyFile = "/etc/wg/mlvd"; address = [ "10.65.79.164/32" "fc00:bbbb:bbbb:bb01::2:4fa3/128" ]; dns = [ "193.138.218.74" ]; |
