zsh.nix/modules/packages.nix
2025-04-19 23:07:40 +02:00

28 lines
406 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# asciinema
asciinema_3 # Terminal recording
asciinema-agg # Convert asciinema recordings
libnotify # Notifications
# ^ asciinema
curl
# parsing
gawk
jq
yq
# ^ parsing
python3
# useful dev/everyday tools
encfs
file
htop-vim
tldr
tmux
tree
# ^ useful dev/everyday tools
];
}