diff options
| author | Grisha Shipunov | 2025-08-17 13:39:45 +0200 |
|---|---|---|
| committer | Grisha Shipunov | 2025-08-17 13:40:57 +0200 |
| commit | 0e8a6b0c311546205e4e73f0d37e001857f69710 (patch) | |
| tree | 566c3bd37913f986efbafed157b9040bc333263d /modules/wg | |
| parent | ea0c59bafe612561e768f42d0fa007c070fc6b68 (diff) | |
remove extraPeers, config can be done directly
Diffstat (limited to 'modules/wg')
| -rw-r--r-- | modules/wg/options.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/wg/options.nix b/modules/wg/options.nix index 56fd964..d4e8567 100644 --- a/modules/wg/options.nix +++ b/modules/wg/options.nix @@ -59,24 +59,6 @@ type = types.nullOr types.str; default = null; }; - - endpoint.extraPeers = mkOption { - default = [ ]; - type = types.listOf ( - types.submodule { - options = { - address = mkOption { - type = types.listOf types.str; - default = [ ]; - }; - publicKey = mkOption { - type = types.nullOr types.str; - default = null; - }; - }; - } - ); - }; }; } ); |
