summaryrefslogtreecommitdiff
path: root/modules/basic-tools
diff options
context:
space:
mode:
Diffstat (limited to 'modules/basic-tools')
-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;
}