diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-06-16 22:41:43 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-06-16 22:41:48 +0530 |
commit | 2d96560de59561b0d775e9c8efd9d7392294cea3 (patch) | |
tree | 0437e7f2f62b9152719dc3284b92a259786321e5 /os/kay/modules | |
parent | 69138c9efa8a0a556973548faaa3f077639b30b4 (diff) |
Diffstat (limited to 'os/kay/modules')
-rw-r--r-- | os/kay/modules/wireguard.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/os/kay/modules/wireguard.nix b/os/kay/modules/wireguard.nix index ae42930..fd00804 100644 --- a/os/kay/modules/wireguard.nix +++ b/os/kay/modules/wireguard.nix @@ -7,8 +7,6 @@ let wgInterface = "wg"; wanInterface = "ppp0"; - subnet = "10.0.1.0"; - prefix = 24; port = 51820; wgConf = pkgs.writeText "wg.conf" '' @@ -42,16 +40,6 @@ let # friendly_name = dad PublicKey = q70IyOS2IpubIRWqo5sL3SeEjtUy2V/PT8yqVExiHTQ= AllowedIPs = 10.0.1.4/32 - - [Peer] - # friendly_name = pradeep - PublicKey = BAOdbgUd53ZmQWkZP3N+zAsxdBpqv6icEwmmjRFEmxI= - AllowedIPs = 10.0.1.5/32 - - [Peer] - # friendly_name = angelo - PublicKey = U6+PzFuM6lKVx0TnDWuWJMsP6Tj8o1a9zjRcD7gV53o= - AllowedIPs = 10.0.1.6/32 ''; in { |