fix: change invalid types.string to types.str

This commit is contained in:
2025-11-01 23:26:28 +01:00
parent d48193d65c
commit 2958cc4c7a
3 changed files with 11 additions and 11 deletions

View File

@@ -9,16 +9,16 @@ in {
options.mySystem.services.jellyfin = {
enable = mkEnableOption "Enable Jellyfin";
dataDir = mkOption {
type = types.string;
type = types.str;
default = "/tank/jellyfin/data";
example = "/tank/jellyfin/data";
};
user = mkOption {
type = types.string;
type = types.str;
default = "phundrak";
};
group = mkOption {
type = types.string;
type = types.str;
default = "users";
};
};