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

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