refactor(deprecation): replace types.string with types.str

see https://github.com/NixOS/nixpkgs/pull/66346
This commit is contained in:
shivaraj-bh 2024-03-29 21:20:23 +05:30
parent ecc409436c
commit 423b85482d

View File

@ -63,7 +63,7 @@ with lib;
# to have users choose a safer value -- /tmp might be volatile and is a
# slightly scary default choice.
# default = [ "/tmp/apache-kafka" ];
type = with types; listOf string;
type = with types; listOf str;
default = [ (config.dataDir + "/logs") ];
};