From 1b59ce0ca9b41b496ad016059f5a771efe635e7d Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Fri, 12 Dec 2025 23:48:06 +0100 Subject: disable man cache for now --- modules/basic-tools/fish.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/basic-tools/fish.nix b/modules/basic-tools/fish.nix index ee3eee6..d813bc1 100644 --- a/modules/basic-tools/fish.nix +++ b/modules/basic-tools/fish.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: { environment.systemPackages = with pkgs; [ lsd @@ -55,4 +55,8 @@ grep = "grep --color=auto"; }; }; + + # regression somewhere results in insane rebuild times + # https://discourse.nixos.org/t/slow-build-at-building-man-cache/52365 + documentation.man.generateCaches = lib.mkForce false; } -- cgit v1.3.1