diff --git a/hosts/phantom/default.nix b/hosts/phantom/default.nix
index 7bb0fb0..919e681 100644
--- a/hosts/phantom/default.nix
+++ b/hosts/phantom/default.nix
@@ -10,7 +10,6 @@
     ./syncthing.nix
     ./users.nix
     ./writefreely.nix
-    ./renawiki.nix
     ./email.nix
     ./forgejo.nix
   ];
diff --git a/hosts/phantom/renawiki.nix b/hosts/phantom/renawiki.nix
deleted file mode 100644
index 5b21907..0000000
--- a/hosts/phantom/renawiki.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ config, pkgs, inputs, ... }: {
-  services.mediawiki = {
-    enable = true;
-    name = "Rena Wiki";
-
-    webserver = "nginx";
-    nginx.hostName = "renawiki.lelgenio.xyz";
-    passwordFile = config.age.secrets.phantom-renawiki.path;
-
-    extensions.VisualEditor = null;
-  };
-  services.nginx.virtualHosts."renawiki.lelgenio.xyz" = {
-    enableACME = true;
-    forceSSL = true;
-  };
-
-  age.secrets.phantom-renawiki = {
-    file = ../../secrets/phantom-renawiki.age;
-    mode = "400";
-    owner = "mediawiki";
-  };
-}
-