nix/home-manager/config/shell/tldr.nix

19 lines
334 B
Nix
Raw Normal View History

{ ... }:
{
programs.tealdeer = {
enable = true;
settings = {
display = {
use_pager = false;
compact = false;
};
updates = {
auto_update = true;
auto_update_interval_hours = 24;
};
};
};
}