cpp tools in wsl

This commit is contained in:
2026-06-07 15:59:41 +03:00
parent 8ca46a632c
commit 7514df3df3
2 changed files with 17 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@
../software/beets
../software/whisper.nix
./containers
./tools
#../server/open-webui.nix
#../services/tts.nix
];
+16
View File
@@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
gcc
gdb
cmake
gnumake
nlohmann_json
];
}