Files
dotfiles/nix/modules/tealdeer.nix
2022-09-04 11:15:30 -07:00

14 lines
231 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
tealdeer
];
home.activation = {
updateTLDRCache = lib.hm.dag.entryAfter ["writeBoundary"] ''
$DRY_RUN_CMD ${pkgs.tealdeer}/bin/tldr -u
'';
};
}