diff --git a/system/minecraft.nix b/system/minecraft.nix index 3cb3acc..8c3ce28 100644 --- a/system/minecraft.nix +++ b/system/minecraft.nix @@ -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 = [ ]; }; };