From 0fc8b5023f7acc4c74714ae701a1e8442f6d7ffb Mon Sep 17 00:00:00 2001
From: NullBite <me@nullbite.com>
Date: Wed, 18 Dec 2024 13:09:44 -0500
Subject: [PATCH] system: fix deprecated string

---
 system/minecraft.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 = [ ];
         };
       };