From 46918c08cc42c6152e32106353070436c4d61a5f Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Sat, 20 Apr 2024 17:52:49 +0100 Subject: [PATCH] Add sillytavern nix shell --- nix-shells/sillytavern.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nix-shells/sillytavern.nix diff --git a/nix-shells/sillytavern.nix b/nix-shells/sillytavern.nix new file mode 100644 index 00000000..35af2258 --- /dev/null +++ b/nix-shells/sillytavern.nix @@ -0,0 +1,17 @@ +# SillyTavern - Ai/LLMs WebUI +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/master"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + nodejs + nodePackages.typescript-language-server + ]; + + # Startup command + shellHook = '' + ./start.sh + ''; +}