system/services: add mandocs and mandb
This commit is contained in:
parent
ea376f54e1
commit
8a7f929386
2 changed files with 13 additions and 1 deletions
|
@ -17,7 +17,7 @@ in {
|
|||
"${system}/programs/games.nix"
|
||||
"${system}/hardware/nvidia.nix"
|
||||
|
||||
"${system}/services/syncthing.nix"
|
||||
"${system}/services/documentation.nix"
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
|
|
12
system/services/documentation.nix
Normal file
12
system/services/documentation.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
_: {
|
||||
documentation = {
|
||||
enable = true;
|
||||
|
||||
man = {
|
||||
enable = true;
|
||||
man-db.enable = false;
|
||||
mandoc.enable = true;
|
||||
generateCaches = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue