diff options
| author | Grisha Shipunov | 2025-12-12 23:48:06 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-12-12 23:48:06 +0100 |
| commit | 1b59ce0ca9b41b496ad016059f5a771efe635e7d (patch) | |
| tree | 9d776f29db7ddb091d94852e356555dc3144cb61 /modules | |
| parent | 0ceba95e3a2015a3fe0e3b45ea2b123682f295b4 (diff) | |
disable man cache for now
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/basic-tools/fish.nix | 6 |
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; } |
