22 lines
364 B
Nix
22 lines
364 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
|
||
|
tree
|
||
|
# ^ useful dev/everyday tools
|
||
|
];
|
||
|
}
|