28 lines
406 B
Nix
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
|
|
];
|
|
}
|