complete restructure

This commit is contained in:
Melvin Ragusa
2026-02-04 22:53:00 +01:00
parent d516c95d65
commit c4cd70fd20
43 changed files with 985 additions and 1229 deletions

46
modules/dev/tools.nix Normal file
View File

@@ -0,0 +1,46 @@
# modules/dev/tools.nix
# Development tools and CLI utilities
{
config,
pkgs,
lib,
...
}:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
environment.systemPackages = with pkgs; [
bun
pnpm
nodejs
python3
rustup
gcc
gnumake
cmake
pkg-config
git
gh
delta
lazygit
nil
nixfmt
jq
yq
ripgrep
fd
fzf
eza
bat
broot
tealdeer
duf
sd
pv
parallel
];
}