2024-11-22 03:27:48 +01:00
|
|
|
{pkgs, ...}: {
|
2024-11-20 10:26:23 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
# asciinema
|
2025-04-19 23:07:40 +02:00
|
|
|
asciinema_3 # Terminal recording
|
2024-11-20 10:26:23 +01:00
|
|
|
asciinema-agg # Convert asciinema recordings
|
|
|
|
libnotify # Notifications
|
|
|
|
# ^ asciinema
|
|
|
|
|
2025-04-19 23:07:40 +02:00
|
|
|
curl
|
|
|
|
|
|
|
|
# parsing
|
|
|
|
gawk
|
|
|
|
jq
|
|
|
|
yq
|
|
|
|
# ^ parsing
|
|
|
|
|
|
|
|
python3
|
|
|
|
|
2024-11-20 10:26:23 +01:00
|
|
|
# useful dev/everyday tools
|
|
|
|
encfs
|
|
|
|
file
|
|
|
|
htop-vim
|
|
|
|
tldr
|
2025-03-24 20:13:07 +01:00
|
|
|
tmux
|
2024-11-20 10:26:23 +01:00
|
|
|
tree
|
|
|
|
# ^ useful dev/everyday tools
|
|
|
|
];
|
|
|
|
}
|