system: fix deprecated string

This commit is contained in:
NullBite 2024-12-18 13:09:44 -05:00
parent b252af1270
commit 0fc8b5023f
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -20,13 +20,13 @@
modpackFiles = lib.mkOption {
description = "List of files from modpack to copy into server directory";
type = with lib.types; listOf string;
type = with lib.types; listOf str;
default = [ ];
};
modpackSymlinks = lib.mkOption {
description = "List of files from modpack to symlink into server directory";
type = with lib.types; listOf string;
type = with lib.types; listOf str;
default = [ ];
};
};