Add sillytavern nix shell

This commit is contained in:
2024-04-20 17:52:49 +01:00
parent c2873dd88c
commit 46918c08cc

View File

@@ -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
'';
}