mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
30 lines
465 B
Nix
30 lines
465 B
Nix
{ config, pkgs, ... }: {
|
||
home.packages = with pkgs; [
|
||
# disk usage
|
||
duc-cli
|
||
# nix formatting
|
||
nixpkgs-fmt
|
||
# show type of files
|
||
file
|
||
# command monitoring
|
||
progress
|
||
pv
|
||
# cat but better
|
||
bat
|
||
# ls replacement
|
||
exa
|
||
# sed replacement
|
||
sd
|
||
# find replacement
|
||
fd
|
||
# ripgrep / grep replacement
|
||
ripgrep
|
||
# remote tmux
|
||
tmate
|
||
# remote utilities
|
||
socat
|
||
rsync
|
||
wget
|
||
whois
|
||
];
|
||
}
|