dotfiles-nix/modules/cli-tools.nix

18 lines
163 B
Nix

{
config,
lib,
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
wget
tealdeer
p7zip
btop
opencode
fd
ripgrep
];
}