diff --git a/devshells/rwtw.nix b/devshells/rwtw.nix
index 772c0f1..56565ba 100644
--- a/devshells/rwtw.nix
+++ b/devshells/rwtw.nix
@@ -1,9 +1,9 @@
-# Shell containing the tools I most commonly use for work
+# Shell for running the rain world tech wiki locally
 { pkgs, inputs, ... }:
 let
   pythonDeps = ps: with ps; [ python-slugify rtoml ];
   zolaObsidianPython = pkgs.python3.withPackages pythonDeps;
 in
 pkgs.mkShell {
-  nativeBuildInputs = with pkgs; [ zolaObsidianPython pkgs.zola cargo rustup ];
+  nativeBuildInputs = with pkgs; [ zolaObsidianPython zola cargo rustup ];
 }