summaryrefslogtreecommitdiff
path: root/features/development.nix
blob: aa26c9b2fb6f0659d62897ffd04a06ba5ea189d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    man-pages
    man-pages-posix
  ];
  documentation.dev.enable = true;
}