mio-ops/profiles/terminal-recording.nix

14 lines
339 B
Nix
Raw Normal View History

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
termtosvg # Record terminal sessions as SVG animations
];
}