diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-10-27 21:41:23 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-10-27 21:41:23 +0530 |
commit | ec5fc01b62f0c2fb680e5cb9233b3533f18105b3 (patch) | |
tree | b4a15fab3d1494e93db9c25831f62157a1d49a7c /home/pc/modules | |
parent | 8ce3c962287a4fc948d4e3e6fd69c95d6e9da382 (diff) |
home/pc/dev: generate caches for man pages
Diffstat (limited to 'home/pc/modules')
-rw-r--r-- | home/pc/modules/dev.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/home/pc/modules/dev.nix b/home/pc/modules/dev.nix index 0d51bdb..4290190 100644 --- a/home/pc/modules/dev.nix +++ b/home/pc/modules/dev.nix @@ -1,10 +1,14 @@ { pkgs, ... }: { - programs.man.enable = true; + programs.man = { + enable = true; + generateCaches = true; + }; home.packages = with pkgs; [ git sops + linux-manual man-pages man-pages-posix |