aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules
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
parent87d614441d51da42d4d7102155e4535c64f8c1df (diff)
nixos/fish: make generateCaches easier to override
Diffstat (limited to 'nixos/modules')
-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 39b92edf2ac2..50d1077dd410 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;