global/general: properly disable man caches

This commit is contained in:
Infinidoge 2024-10-17 13:26:37 -04:00
parent 5f3df0e825
commit 28f18c9a99
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
2 changed files with 2 additions and 4 deletions

View file

@ -39,8 +39,6 @@
''; '';
}; };
documentation.man.man-db.enable = false;
persist = { persist = {
directories = [ directories = [
]; ];

View file

@ -32,8 +32,8 @@
# Disable force importing ZFS roots # Disable force importing ZFS roots
boot.zfs.forceImportRoot = false; boot.zfs.forceImportRoot = false;
# Disable man-db/man-cache # Disable man cache
# I don't use it, and it takes ages on rebuild # 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; home.programs.man.generateCaches = false;
} }