Files
m3ta-home/profiles/sets/coding/core/packages.nix
T

15 lines
249 B
Nix
Raw Normal View History

2026-05-02 09:08:40 +02:00
# profiles/sets/coding/core/packages.nix
# Essential CLI dev tools — always available when coding set is active.
{pkgs, ...}: {
home.packages = with pkgs; [
curl
fd
file
hyperfine
jq
ripgrep
tree
2026-05-29 17:37:09 +02:00
worktrunk
2026-05-02 09:08:40 +02:00
];
}