From 2d364eb6c038a9afe7a21d38952cff70c8c48334 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 28 Jan 2022 05:14:10 -0300 Subject: [PATCH] fix deprecated type --- module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module.nix b/module.nix index b70b4e3..915a3a5 100644 --- a/module.nix +++ b/module.nix @@ -15,11 +15,11 @@ in { ''; }; subsonicUrl = mkOption { - type = types.string; + type = types.str; description = "Subsonic library base API URL"; }; subsonicUser = mkOption { - type = types.string; + type = types.str; description = "Subsonic user login"; }; subsonicPasswordFile = mkOption {