diff options
| author | Grisha Shipunov | 2025-01-12 13:45:55 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-01-12 14:02:32 +0100 |
| commit | 91078925890dfbbef82a644dfc9734a0efdc179b (patch) | |
| tree | 1f6c27124957544ffb06103d1382c8ff4ee0e4e5 /modules | |
| parent | 2c6f0762ea3faadea2c3a196c0d1717afa3c42da (diff) | |
some work
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/wg/module.nix | 2 | ||||
| -rw-r--r-- | modules/wg/proxy.nix | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/modules/wg/module.nix b/modules/wg/module.nix index c27f325..4f53ab7 100644 --- a/modules/wg/module.nix +++ b/modules/wg/module.nix @@ -1,8 +1,6 @@ { lib, config, - self, - registry, ... }: { diff --git a/modules/wg/proxy.nix b/modules/wg/proxy.nix index 78f78bb..4151d59 100644 --- a/modules/wg/proxy.nix +++ b/modules/wg/proxy.nix @@ -23,6 +23,14 @@ publicIface = "enp1s0"; }; }; + "authentik" = { + address = [ + "10.89.88.2/24" + "fd31:185d:722f::2/48" + ]; + publicKey = ""; + privateKeyFile = config.sops.secrets."wg/0xa-proxy".path; + }; }; } ]; |
