Add sillytavern nix shell
This commit is contained in:
17
nix-shells/sillytavern.nix
Normal file
17
nix-shells/sillytavern.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user