Merge pull request #185856 from NoneTirex/fix-headscale-tls-config

headscale: fix tls challengeType enum possible values

authored by Jörg Thalheim and committed by GitHub 66c94cd5 e2f2ee2b

+2 -2
+2 -2
nixos/modules/services/networking/headscale.nix
··· 286 286 ''; 287 287 }; 288 288 challengeType = mkOption { 289 - type = types.enum [ "TLS_ALPN-01" "HTTP-01" ]; 289 + type = types.enum [ "TLS-ALPN-01" "HTTP-01" ]; 290 290 default = "HTTP-01"; 291 291 description = lib.mdDoc '' 292 292 Type of ACME challenge to use, currently supported types: 293 - `HTTP-01` or `TLS_ALPN-01`. 293 + `HTTP-01` or `TLS-ALPN-01`. 294 294 ''; 295 295 }; 296 296 httpListen = mkOption {