14 lines
231 B
Nix
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
|
|
'';
|
|
};
|
|
}
|