summaryrefslogtreecommitdiff
path: root/modules/wg/options.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-08-17 13:39:45 +0200
committerGrisha Shipunov2025-08-17 13:40:57 +0200
commit0e8a6b0c311546205e4e73f0d37e001857f69710 (patch)
tree566c3bd37913f986efbafed157b9040bc333263d /modules/wg/options.nix
parentea0c59bafe612561e768f42d0fa007c070fc6b68 (diff)
remove extraPeers, config can be done directly
Diffstat (limited to 'modules/wg/options.nix')
-rw-r--r--modules/wg/options.nix18
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;
- };
- };
- }
- );
- };
};
}
);