improvements
This commit is contained in:
parent
332cac2dcb
commit
eec6abf860
|
@ -10,39 +10,46 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs.unstable; [
|
environment.systemPackages = with pkgs.unstable; [
|
||||||
# ollama
|
ollama
|
||||||
# openai-whisper
|
openai-whisper
|
||||||
# openai-whisper-cpp
|
openai-whisper-cpp
|
||||||
# wyoming-faster-whisper
|
whisper-ctranslate2
|
||||||
# subtitlr
|
wyoming-faster-whisper
|
||||||
# piper-tts
|
wyoming-piper
|
||||||
|
subtitlr
|
||||||
|
piper-tts
|
||||||
|
bark
|
||||||
|
|
||||||
# #piper-train #broken
|
# #piper-train #broken
|
||||||
# wyoming-piper
|
python3
|
||||||
# python3
|
python3Packages.openai-whisper
|
||||||
# python3Packages.torchWithCuda
|
python3Packages.faster-whisper
|
||||||
# python3Packages.openai-whisper
|
python3Packages.scipy
|
||||||
# python3Packages.faster-whisper
|
|
||||||
# python3Packages.scipy
|
|
||||||
# python3Packages.numba-scipy
|
# python3Packages.numba-scipy
|
||||||
#python3Packages.scikit-image
|
#python3Packages.scikit-image
|
||||||
# python3Packages.traittypes
|
# python3Packages.traittypes
|
||||||
# python3Packages.statsmodels
|
# python3Packages.statsmodels
|
||||||
# python3Packages.scikits-odes
|
python3Packages.scikits-odes
|
||||||
# python3Packages.sympy
|
python3Packages.sympy
|
||||||
# python3Packages.numpy
|
python3Packages.numpy
|
||||||
# python3Packages.pandas
|
python3Packages.pandas
|
||||||
# python3Packages.matplotlib
|
python3Packages.matplotlib
|
||||||
#python3Packages.tensorflow
|
#python3Packages.tensorflow
|
||||||
#python3Packages.tensorboard
|
#python3Packages.tensorboard
|
||||||
#python3Packages.keras
|
#python3Packages.keras
|
||||||
# python3Packages.transformers
|
python3Packages.transformers
|
||||||
# python3Packages.torch
|
python3Packages.torch
|
||||||
#python3Packages.torchvision-bin
|
#python3Packages.torchvision-bin
|
||||||
#python3Packages.torchsde
|
#python3Packages.torchsde
|
||||||
#python3Packages.torchaudio-bin
|
#python3Packages.torchaudio-bin
|
||||||
#python3Packages.torchWithRocm
|
#python3Packages.torchWithRocm
|
||||||
#python3Packages.torchWithCuda
|
#python3Packages.torchWithCuda
|
||||||
#python3Packages.scikit-learn-extra
|
#python3Packages.scikit-learn-extra
|
||||||
|
python3Packages.langchain
|
||||||
|
python3Packages.langchain-community
|
||||||
|
python3Packages.langchain-core
|
||||||
|
python3Packages.langchain-chroma
|
||||||
|
python3Packages.langchain-text-splitters
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@ imports =
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
git
|
git
|
||||||
|
unzip
|
||||||
|
zip
|
||||||
|
gnutar
|
||||||
wget
|
wget
|
||||||
rsync
|
rsync
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
@ -6,6 +6,7 @@ imports =
|
||||||
./sound.nix
|
./sound.nix
|
||||||
./video.nix
|
./video.nix
|
||||||
./office.nix
|
./office.nix
|
||||||
|
./development.nix
|
||||||
|
|
||||||
../packages/vim.nix
|
../packages/vim.nix
|
||||||
../packages/steam.nix
|
../packages/steam.nix
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./base.nix
|
./base.nix
|
||||||
./ai.nix
|
#./ai.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -29,9 +29,12 @@ imports =
|
||||||
rustup
|
rustup
|
||||||
|
|
||||||
|
|
||||||
|
cmake
|
||||||
|
gnumake
|
||||||
mpi
|
mpi
|
||||||
|
bc
|
||||||
gnuplot
|
gnuplot
|
||||||
|
ffmpeg
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue