From 3a65fb876bb5458508b6ef0216bd5e0b15c1ce6f Mon Sep 17 00:00:00 2001 From: Nikolay Petrov Date: Sat, 11 Jan 2025 20:21:52 -0500 Subject: [PATCH] use types.str --- nix/client-module.nix | 2 +- nix/control-server-module.nix | 2 +- nix/relay-server-module.nix | 2 +- nix/server-module.nix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/client-module.nix b/nix/client-module.nix index aed0c13..a5bd263 100644 --- a/nix/client-module.nix +++ b/nix/client-module.nix @@ -82,7 +82,7 @@ in statusAddr = lib.mkOption { default = null; - type = lib.types.nullOr lib.types.string; + type = lib.types.nullOr lib.types.str; description = '' The address to listen for status connections. diff --git a/nix/control-server-module.nix b/nix/control-server-module.nix index b9835a2..1b00492 100644 --- a/nix/control-server-module.nix +++ b/nix/control-server-module.nix @@ -100,7 +100,7 @@ in statusAddr = lib.mkOption { default = null; - type = lib.types.nullOr lib.types.string; + type = lib.types.nullOr lib.types.str; description = '' The address to listen for status connections. diff --git a/nix/relay-server-module.nix b/nix/relay-server-module.nix index 3f75371..a6b8ef5 100644 --- a/nix/relay-server-module.nix +++ b/nix/relay-server-module.nix @@ -88,7 +88,7 @@ in statusAddr = lib.mkOption { default = null; - type = lib.types.nullOr lib.types.string; + type = lib.types.nullOr lib.types.str; description = '' The address to listen for status connections. diff --git a/nix/server-module.nix b/nix/server-module.nix index c72f010..df6d0a7 100644 --- a/nix/server-module.nix +++ b/nix/server-module.nix @@ -107,7 +107,7 @@ in statusAddr = lib.mkOption { default = null; - type = lib.types.nullOr lib.types.string; + type = lib.types.nullOr lib.types.str; description = '' The address to listen for status connections.