nixos-config/sets/documentation.nix

10 lines
156 B
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{ pkgs, ... }:
{
2024-01-24 04:03:50 +00:00
environment.systemPackages = with pkgs; [ man-pages ];
documentation = {
dev.enable = true;
man.generateCaches = true;
};
}