nixfiles/home/profiles/shell/packages.nix
2025-07-26 13:48:37 -07:00

32 lines
469 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{pkgs, ...}: {
home.packages = with pkgs; [
# task managers
htop
btop
# disk usage
duc
# nix formatting
nixpkgs-fmt
# show type of files
file
# command monitoring
pv
# sed replacement
sd
# sops
sops
# find replacement
fd
# ripgrep / grep replacement
ripgrep
# rename with sed
rename
# remote tmux
tmate
# remote utilities
socat
rsync
wget
whois
];
}