mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-26 03:34:35 +00:00
Add tealdeer
This commit is contained in:
parent
cf6e100339
commit
604a0d284b
|
@ -6,5 +6,6 @@ _: {
|
||||||
./man.nix
|
./man.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
|
./tealdeer.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
17
home/programs/terminal/tools/tealdeer.nix
Normal file
17
home/programs/terminal/tools/tealdeer.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Implementation of tldr in rust
|
||||||
|
{
|
||||||
|
programs = {
|
||||||
|
tealdeer = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
display = {
|
||||||
|
compact = false;
|
||||||
|
use_pager = true;
|
||||||
|
};
|
||||||
|
updates = {
|
||||||
|
auto_update = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue