about summary refs log tree commit diff
path: root/modules/services
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services')
-rw-r--r--modules/services/starbound.nix25
1 files changed, 5 insertions, 20 deletions
diff --git a/modules/services/starbound.nix b/modules/services/starbound.nix
index ae031df3..ce7ecd24 100644
--- a/modules/services/starbound.nix
+++ b/modules/services/starbound.nix
@@ -34,8 +34,11 @@ let
       inherit (attrs) admin password;
     }) cfg.users;
 
-    inherit (cfg) allowAssetsMismatch clearPlayerFiles clearUniverseFiles;
-    inherit (cfc) maxPlayers safeScripts serverName serverFidelity;
+    inherit (cfg)
+      allowAssetsMismatch maxPlayers safeScripts serverName serverFidelity;
+
+    clearPlayerFiles = false;
+    clearUniverseFiles = false;
 
     gameServerBind = cfg.bind;
     gameServerPort = cfg.port;
@@ -143,24 +146,6 @@ in {
       '';
     };
 
-    clearPlayerFiles = mkOption {
-      # XXX: Figure out the exact semantics of this.
-      type = types.bool;
-      default = false;
-      description = ''
-        Forces players to use new characters or to have no gear or tech.
-      '';
-    };
-
-    clearUniverseFiles = mkOption {
-      # XXX: Figure out the exact semantics of this.
-      type = types.bool;
-      default = false;
-      description = ''
-        Forces player characters to use fresh universe data and navigation maps.
-      '';
-    };
-
     bannedIPs = mkOption {
       type = types.listOf types.str;
       default = [];