diff --git a/hosts/solaire/default.nix b/hosts/solaire/default.nix index b9787be..7081dfe 100644 --- a/hosts/solaire/default.nix +++ b/hosts/solaire/default.nix @@ -17,7 +17,7 @@ in { "${system}/programs/games.nix" "${system}/hardware/nvidia.nix" - "${system}/services/syncthing.nix" + "${system}/services/documentation.nix" ]; home-manager = { diff --git a/system/services/documentation.nix b/system/services/documentation.nix new file mode 100644 index 0000000..0919470 --- /dev/null +++ b/system/services/documentation.nix @@ -0,0 +1,12 @@ +_: { + documentation = { + enable = true; + + man = { + enable = true; + man-db.enable = false; + mandoc.enable = true; + generateCaches = true; + }; + }; +}