diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-04-19 10:48:15 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-04-24 14:27:38 -0600 |
| commit | 1039d1d47a53be0c814a03608e94a9d0e8f4405b (patch) | |
| tree | a6cf802896f0ad41742354499df8063d9065eb02 /sys/ns/ptr/gate-public-v4/default.nix | |
| parent | f4ed93ff7d01e659960b9cd3dc5bc3d6d6e27d01 (diff) | |
sys/ns: implement automatic PTR zones
Diffstat (limited to 'sys/ns/ptr/gate-public-v4/default.nix')
| -rw-r--r-- | sys/ns/ptr/gate-public-v4/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/ns/ptr/gate-public-v4/default.nix b/sys/ns/ptr/gate-public-v4/default.nix new file mode 100644 index 0000000..a2595d9 --- /dev/null +++ b/sys/ns/ptr/gate-public-v4/default.nix @@ -0,0 +1,16 @@ +{ config, ... }: +let + inherit (config.local) nets; +in +{ + imports = [ + ./serial.nix + ]; + + config = { + localNS = { + enable = true; + ptrNet.v4 = "gate-public"; + }; + }; +} |
