about summary refs log tree commit diff
path: root/modules/system/documentation/default.nix
blob: 67f84ff5bf6cd55c476c20a941094d24a59cec1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }: {
  documentation = {
    enable = true;
    dev.enable = true;
    info.enable = true;
    man = {
      enable = true;
      generateCaches = true;
    };
    nixos.enable = true;
  };

  environment.systemPackages = with pkgs; [ man-pages man-pages-posix ];
}