From 28f18c9a99312b3b7e2ee0a7946ba1c3ad0ed4b8 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 17 Oct 2024 13:26:37 -0400 Subject: [PATCH] global/general: properly disable man caches --- hosts/Infini-SD/default.nix | 2 -- modules/global/general.nix | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/hosts/Infini-SD/default.nix b/hosts/Infini-SD/default.nix index 0a1b955..ae18566 100644 --- a/hosts/Infini-SD/default.nix +++ b/hosts/Infini-SD/default.nix @@ -39,8 +39,6 @@ ''; }; - documentation.man.man-db.enable = false; - persist = { directories = [ ]; diff --git a/modules/global/general.nix b/modules/global/general.nix index dd82a64..ec7d909 100644 --- a/modules/global/general.nix +++ b/modules/global/general.nix @@ -32,8 +32,8 @@ # Disable force importing ZFS roots boot.zfs.forceImportRoot = false; - # Disable man-db/man-cache + # Disable man cache # I don't use it, and it takes ages on rebuild - documentation.man.man-db.enable = false; + documentation.man.generateCaches = false; home.programs.man.generateCaches = false; }