Revert "system: Generate man page caches on phone"

This actually increases the build time from about 1 minute and 45
seconds to 19 minutes and 15 seconds, which is a bit too long for
my tastes.
This commit is contained in:
Donovan Glover 2024-07-17 06:36:29 -04:00
parent a177b0d9d8
commit 3621b63e20
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -146,6 +146,8 @@ in
};
};
documentation.man.generateCaches = mkIf (phone) false;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
@ -155,7 +157,7 @@ in
inherit (cfg) stateVersion;
};
programs.man.generateCaches = true;
programs.man.generateCaches = mkIf (!phone) true;
};
users.${username}.home = {