Loading nixos/modules/services/home-automation/home-assistant.nix +7 −6 Original line number Diff line number Diff line Loading @@ -406,14 +406,15 @@ in http = { # https://www.home-assistant.io/integrations/http/ server_host = mkOption { type = types.either types.str (types.listOf types.str); default = [ "0.0.0.0" "::" type = types.nullOr (types.either types.str (types.listOf types.str)); default = null; example = [ "::1" "127.0.0.1" ]; example = "::1"; description = '' Only listen to incoming requests on specific IP/host. The default listed assumes support for IPv4 and IPv6. Only listen to incoming requests on specific IP/host. The option is unset by default, meaning that Home Assistant listens on all available addresses. ''; }; Loading Loading
nixos/modules/services/home-automation/home-assistant.nix +7 −6 Original line number Diff line number Diff line Loading @@ -406,14 +406,15 @@ in http = { # https://www.home-assistant.io/integrations/http/ server_host = mkOption { type = types.either types.str (types.listOf types.str); default = [ "0.0.0.0" "::" type = types.nullOr (types.either types.str (types.listOf types.str)); default = null; example = [ "::1" "127.0.0.1" ]; example = "::1"; description = '' Only listen to incoming requests on specific IP/host. The default listed assumes support for IPv4 and IPv6. Only listen to incoming requests on specific IP/host. The option is unset by default, meaning that Home Assistant listens on all available addresses. ''; }; Loading