Skip to content

Commit

Permalink
use types.str
Browse files Browse the repository at this point in the history
  • Loading branch information
ingon committed Jan 12, 2025
1 parent 1119381 commit 3a65fb8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nix/client-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nix/control-server-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nix/relay-server-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nix/server-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3a65fb8

Please sign in to comment.