2021-08-12 09:00:36 +00:00
|
|
|
# Terminal recording tools and configuration
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
asciinema # Terminal session recorder
|
|
|
|
asciinema-scenario # Create asciinema videos from a text file
|
2021-09-28 01:31:38 +00:00
|
|
|
image_optim # CLI tool to optimize images
|
2021-08-12 09:00:36 +00:00
|
|
|
termtosvg # Record terminal sessions as SVG animations
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|