1
Fork 0

Add tealdeer

This commit is contained in:
Matei Adriel 2023-11-04 19:38:35 +01:00
parent f17e32e30d
commit 74191baf37
No known key found for this signature in database
3 changed files with 15 additions and 6 deletions

View file

@ -7,6 +7,7 @@
./git.nix
./starship.nix
./direnv.nix
./tealdeer.nix
./fish
];
@ -29,7 +30,6 @@
neofetch # Display system information
tokei # Useless but fun line of code counter (sloc alternative)
bottom # System monitor
tldr # Example based cli docs
inputs.agenix.packages.${pkgs.system}.agenix # Secret encryption
inputs.deploy-rs.packages.${pkgs.system}.default # Deployment
];

View file

@ -0,0 +1,14 @@
# Example based cli docs
# https://dbrgn.github.io/tealdeer/
{ config, pkgs, ... }: {
home.packages = [ pkgs.tealdeer ];
xdg.configFile."tealdeer/config.toml".text = ''
[updates]
auto_update = true
'';
satellite.persistence.at.cache.apps.tealdeer.directories = [
"${config.xdg.cacheHome}/tealdeer" # page cache
];
}

View file

@ -96,9 +96,4 @@
# "${config.xdg.configHome}/syncthing" # Syncthing config data
# ];
# # }}}
# {{{ Tldr
satellite.persistence.at.cache.apps.tldr.directories = [
"${config.home.homeDirectory}/.tldrc" # tldr cache
];
# }}}
}