system/services: add mandocs and mandb

This commit is contained in:
Anthony Rodriguez 2024-11-27 17:44:54 +01:00
parent ea376f54e1
commit 8a7f929386
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 13 additions and 1 deletions

View file

@ -17,7 +17,7 @@ in {
"${system}/programs/games.nix" "${system}/programs/games.nix"
"${system}/hardware/nvidia.nix" "${system}/hardware/nvidia.nix"
"${system}/services/syncthing.nix" "${system}/services/documentation.nix"
]; ];
home-manager = { home-manager = {

View file

@ -0,0 +1,12 @@
_: {
documentation = {
enable = true;
man = {
enable = true;
man-db.enable = false;
mandoc.enable = true;
generateCaches = true;
};
};
}