21 lines
331 B
Nix
Raw Normal View History

2024-10-20 00:30:58 +02:00
{pkgs, ...}: {
home.packages = with pkgs; [
2025-02-12 11:12:32 +01:00
devpod
devpod-desktop
2025-02-05 13:17:58 +01:00
(python3.withPackages (ps:
with ps; [
2025-02-20 15:47:16 +01:00
pip
2025-02-05 13:17:58 +01:00
# 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
];
}