14 lines
235 B
Nix
14 lines
235 B
Nix
|
|
# 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
|
||
|
|
];
|
||
|
|
}
|