Add TLS support (only over tcp)

This commit is contained in:
bluepython508
2025-04-09 01:15:15 +01:00
parent 4d1eb10d69
commit d87c809ec6
2 changed files with 10 additions and 3 deletions

View File

@@ -47,7 +47,7 @@
proxies = mkOption {
type = attrsOf (submodule ({config, ...}: {
options = let
proto = enum ["udp" "tcp" "unix"];
proto = enum ["udp" "tcp" "unix" "tls"];
in {
enable = mkOption {
type = bool;