summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGrisha Shipunov2025-12-12 23:48:06 +0100
committerGrisha Shipunov2025-12-12 23:48:06 +0100
commit1b59ce0ca9b41b496ad016059f5a771efe635e7d (patch)
tree9d776f29db7ddb091d94852e356555dc3144cb61 /modules
parent0ceba95e3a2015a3fe0e3b45ea2b123682f295b4 (diff)
disable man cache for now
Diffstat (limited to 'modules')
-rw-r--r--modules/basic-tools/fish.nix6
1 files changed, 5 insertions, 1 deletions
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;
}