mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 07:29:43 +00:00
19 lines
331 B
Nix
19 lines
331 B
Nix
# Implementation of tldr in rust
|
|
{
|
|
programs = {
|
|
tealdeer = {
|
|
enable = true;
|
|
settings = {
|
|
display = {
|
|
compact = false;
|
|
use_pager = true;
|
|
};
|
|
updates = {
|
|
auto_update = true;
|
|
auto_update_interval_hours = 720; # 30 days
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|