mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-25 07:08:38 +01:00
system: Don't generate man cache on mobile
Significantly improves build times with aarch64 emulation.
This commit is contained in:
parent
3a50316006
commit
c48a01ae7f
@ -144,6 +144,8 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
documentation.man.generateCaches = mkIf (phone) false;
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
@ -153,7 +155,7 @@ in
|
||||
inherit (cfg) stateVersion;
|
||||
};
|
||||
|
||||
programs.man.generateCaches = true;
|
||||
programs.man.generateCaches = mkIf (!phone) true;
|
||||
};
|
||||
|
||||
users.${username}.home = {
|
||||
|
Loading…
Reference in New Issue
Block a user