Add tealdeer
This commit is contained in:
parent
f17e32e30d
commit
74191baf37
|
@ -7,6 +7,7 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
|
./tealdeer.nix
|
||||||
./fish
|
./fish
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -29,7 +30,6 @@
|
||||||
neofetch # Display system information
|
neofetch # Display system information
|
||||||
tokei # Useless but fun line of code counter (sloc alternative)
|
tokei # Useless but fun line of code counter (sloc alternative)
|
||||||
bottom # System monitor
|
bottom # System monitor
|
||||||
tldr # Example based cli docs
|
|
||||||
inputs.agenix.packages.${pkgs.system}.agenix # Secret encryption
|
inputs.agenix.packages.${pkgs.system}.agenix # Secret encryption
|
||||||
inputs.deploy-rs.packages.${pkgs.system}.default # Deployment
|
inputs.deploy-rs.packages.${pkgs.system}.default # Deployment
|
||||||
];
|
];
|
||||||
|
|
14
home/features/cli/tealdeer.nix
Normal file
14
home/features/cli/tealdeer.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
|
@ -96,9 +96,4 @@
|
||||||
# "${config.xdg.configHome}/syncthing" # Syncthing config data
|
# "${config.xdg.configHome}/syncthing" # Syncthing config data
|
||||||
# ];
|
# ];
|
||||||
# # }}}
|
# # }}}
|
||||||
# {{{ Tldr
|
|
||||||
satellite.persistence.at.cache.apps.tldr.directories = [
|
|
||||||
"${config.home.homeDirectory}/.tldrc" # tldr cache
|
|
||||||
];
|
|
||||||
# }}}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue