2024-10-20 00:30:58 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
home.packages = with pkgs; [
|
2025-02-05 13:17:58 +01:00
|
|
|
(python3.withPackages (ps:
|
|
|
|
with ps; [
|
|
|
|
# Scientific packages
|
|
|
|
numba
|
|
|
|
numpy
|
|
|
|
openai-whisper
|
|
|
|
torch
|
|
|
|
srt
|
|
|
|
]))
|
2024-10-20 00:30:58 +02:00
|
|
|
nixd
|
|
|
|
alejandra
|
2024-11-22 08:54:24 +01:00
|
|
|
tailwindcss
|
2024-11-25 14:59:34 +01:00
|
|
|
tailwindcss-language-server
|
2024-10-20 00:30:58 +02:00
|
|
|
];
|
|
|
|
}
|