From d97772ccc4008417aec2117d62031e9123d8deba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= Date: Fri, 20 Sep 2024 16:35:21 +0200 Subject: [PATCH] s/types.string/types.str/ `types.string` was being used for too many thing so it got deprecated and now there are several different string types. `types.str` is the one where you don't want to merge definitions if it's defined in more than one place Co-authored-by: Taeer Bar-Yam --- fediversity/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fediversity/default.nix b/fediversity/default.nix index 3f39485..9c60d61 100644 --- a/fediversity/default.nix +++ b/fediversity/default.nix @@ -22,7 +22,7 @@ in { }; domain = mkOption { - type = types.string; + type = types.str; }; mastodon.enable = mkEnableOption "default Fediversity Mastodon configuration";