summary refs log tree commit diff
path: root/nixos/modules/programs/fish.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-12-03 22:00:33 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2020-12-03 22:00:33 +0100
commit296c415030b29a29d10dd99a997622c27dbdce57 (patch)
treeeb87c58fa32ee2084cf3a29518c5b9146562ca17 /nixos/modules/programs/fish.nix
parent87d614441d51da42d4d7102155e4535c64f8c1df (diff)
downloadnixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar.gz
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar.bz2
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar.lz
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar.xz
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.tar.zst
nixpkgs-296c415030b29a29d10dd99a997622c27dbdce57.zip
nixos/fish: make generateCaches easier to override
Diffstat (limited to 'nixos/modules/programs/fish.nix')
-rw-r--r--nixos/modules/programs/fish.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix
index 39b92edf2ac..50d1077dd41 100644
--- a/nixos/modules/programs/fish.nix
+++ b/nixos/modules/programs/fish.nix
@@ -103,7 +103,7 @@ in
     programs.fish.shellAliases = mapAttrs (name: mkDefault) cfge.shellAliases;
 
     # Required for man completions
-    documentation.man.generateCaches = true;
+    documentation.man.generateCaches = lib.mkDefault true;
 
     environment.etc."fish/foreign-env/shellInit".text = cfge.shellInit;
     environment.etc."fish/foreign-env/loginShellInit".text = cfge.loginShellInit;