From f48b904b3bc04a38ea8ea0cf06be5c28233cc2a5 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Mon, 22 Dec 2025 16:22:42 +1000 Subject: [PATCH] Disable man caches --- hosts/modules/base.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/modules/base.nix b/hosts/modules/base.nix index 50d5fab..6e80426 100644 --- a/hosts/modules/base.nix +++ b/hosts/modules/base.nix @@ -11,6 +11,11 @@ shell = pkgs.fish; }; + # this is to avoid some problem that happens apparently only when fish is + # enabled, where generating man cahes takes a very long time. note that it may + # break fish man completion and apropos. + documentation.man.generateCaches = false; + # enable a 1GB swap file swapDevices = [{ device = "/swapfile";