nixdots/home/programs/terminal/tools/tealdeer.nix

19 lines
331 B
Nix
Raw Permalink Normal View History

2024-04-04 22:46:46 +00:00
# Implementation of tldr in rust
{
programs = {
tealdeer = {
enable = true;
settings = {
display = {
compact = false;
use_pager = true;
};
updates = {
2024-04-04 22:49:33 +00:00
auto_update = true;
auto_update_interval_hours = 720; # 30 days
2024-04-04 22:46:46 +00:00
};
};
};
};
}