Replace tealdeer package with hm module

This commit is contained in:
Tyler Beckman 2024-12-28 21:43:57 -07:00
parent 89459effd8
commit cbf0ba3586
Signed by: Ty
GPG key ID: 2813440C772555A4
3 changed files with 20 additions and 2 deletions

View file

@ -14,7 +14,6 @@
doggo # DNS Requests
nmap # Network scanning
glow # Markdown rendering
tealdeer # TLDR
usbutils # `lsusb`
pciutils # `lspci`
unzip # Extract zip files

View file

@ -5,6 +5,7 @@
./direnv.nix
./konsole.nix
./starship.nix
./tldr.nix
./zsh.nix
];
}

View file

@ -0,0 +1,18 @@
{ ... }:
{
programs.tealdeer = {
enable = true;
settings = {
display = {
use_pager = false;
compact = false;
};
updates = {
auto_update = true;
auto_update_interval_hours = 24;
};
};
};
}