nix/config/packages/dev.nix
2025-08-29 21:59:11 +02:00

14 lines
202 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# Development and build tools
texlive.combined.scheme-full
python312
uv
# Database and data tools
lazysql
sqlite
];
}