From ec269ad83eefa8968a4e9f58611744c28b469754 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Thu, 4 May 2023 01:33:50 +0200 Subject: [PATCH] Made the rwtw devshell a bit more clear to read --- devshells/rwtw.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; }