From 8f9ef1c30eb211a7cee99b8621d6cff4980fbd79 Mon Sep 17 00:00:00 2001 From: tirex Date: Wed, 10 Aug 2022 03:09:41 +0200 Subject: [PATCH] headscale: fix tls challengeType enum possible values --- nixos/modules/services/networking/headscale.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/headscale.nix b/nixos/modules/services/networking/headscale.nix index f7141de97b5e..ab07e7c14b8c 100644 --- a/nixos/modules/services/networking/headscale.nix +++ b/nixos/modules/services/networking/headscale.nix @@ -286,11 +286,11 @@ in ''; }; challengeType = mkOption { - type = types.enum [ "TLS_ALPN-01" "HTTP-01" ]; + type = types.enum [ "TLS-ALPN-01" "HTTP-01" ]; default = "HTTP-01"; description = lib.mdDoc '' Type of ACME challenge to use, currently supported types: - `HTTP-01` or `TLS_ALPN-01`. + `HTTP-01` or `TLS-ALPN-01`. ''; }; httpListen = mkOption {