14 lines
339 B
Nix
14 lines
339 B
Nix
|
# 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
|
||
|
];
|
||
|
|
||
|
}
|