Replace tealdeer package with hm module
This commit is contained in:
parent
89459effd8
commit
cbf0ba3586
3 changed files with 20 additions and 2 deletions
|
@ -14,7 +14,6 @@
|
|||
doggo # DNS Requests
|
||||
nmap # Network scanning
|
||||
glow # Markdown rendering
|
||||
tealdeer # TLDR
|
||||
usbutils # `lsusb`
|
||||
pciutils # `lspci`
|
||||
unzip # Extract zip files
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
./direnv.nix
|
||||
./konsole.nix
|
||||
./starship.nix
|
||||
./tldr.nix
|
||||
./zsh.nix
|
||||
];
|
||||
}
|
18
home-manager/config/shell/tldr.nix
Normal file
18
home-manager/config/shell/tldr.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue