zsh.nix/packages.nix

20 lines
367 B
Nix
Raw Normal View History

2024-11-22 03:27:48 +01:00
{pkgs, ...}: {
home.packages = with pkgs; [
# asciinema
asciinema # Terminal recording
asciinema-agg # Convert asciinema recordings
libnotify # Notifications
websocat # For asciinema v2 streams
# ^ asciinema
# useful dev/everyday tools
encfs
file
htop-vim
tldr
2025-03-24 20:13:07 +01:00
tmux
tree
# ^ useful dev/everyday tools
];
}