zsh.nix/packages.nix
jiriks74 21e1e5bf9c
Some checks failed
Perform checks / nix_flake_check (push) Failing after 17s
Perform checks / formatting (push) Failing after 40s
feat(packages): Add tmux
2025-03-24 20:13:07 +01:00

19 lines
367 B
Nix

{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
tmux
tree
# ^ useful dev/everyday tools
];
}