fix: change invalid types.string to types.str

This commit is contained in:
2025-11-01 23:26:28 +01:00
parent 2ef0ccf530
commit e5ba5c5236
3 changed files with 11 additions and 11 deletions

View File

@@ -9,17 +9,17 @@ in {
options.mySystem.services.plex = {
enable = mkEnableOption "Enable Plex";
group = mkOption {
type = types.string;
type = types.str;
default = "users";
example = "users";
description = "Group under which Plex runs";
};
dataDir = mkOption {
type = types.string;
type = types.str;
example = "/tank/plex-config";
};
user = mkOption {
type = types.string;
type = types.str;
default = "phundrak";
};
};