mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Enabling and defining minimal config file example;
```nix
{
programs.asciinema = {
enable = true;
settings = {
session.idle_time_limit = 2;
};
};
}
```
... _Should_ result in output `~/.config/asciinema/config.toml` of;
```toml
[session]
idle_time_limit = 2
```
Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
|
||
|---|---|---|
| .. | ||
| accounts | ||
| config | ||
| dbus | ||
| files | ||
| home-environment | ||
| i18n/input-method | ||
| launchd | ||
| misc | ||
| programs | ||
| services | ||
| systemd | ||
| targets-darwin | ||
| targets-linux | ||
| xresources | ||