about summary refs log tree commit diff stats
path: root/sys/documentation/default.nix
blob: 6e7f49125ec900fb00716cf7d73138c1f3c987a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{...}: {
  documentation = {
    nixos = {
      # TODO: Enable this, when the build is no longer local (i.e. I've access to a remote build server) <2023-08-28>
      includeAllModules = true;

      # I don't use this, and it has a considerable build time.
      enable = false;
    };
    dev = {
      # Add man pages aimed at developers (I guess c library stuff, and the like)
      enable = true;
    };
  };
}