diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-05-02 08:03:36 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-05-02 08:03:36 -0700 |
| commit | 7aa912237697c08537688cc4d13d75bff819f7aa (patch) | |
| tree | 646be15680ccec130463e5c66da65a5cf0a0f403 /profiles/documentation.nix | |
| parent | profiles/workstation: add font configurations (diff) | |
| download | infra-7aa912237697c08537688cc4d13d75bff819f7aa.tar.gz | |
profiles/default: more consolidation
Diffstat (limited to 'profiles/documentation.nix')
| -rw-r--r-- | profiles/documentation.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/profiles/documentation.nix b/profiles/documentation.nix new file mode 100644 index 0000000..71ba06b --- /dev/null +++ b/profiles/documentation.nix @@ -0,0 +1,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 + ]; +} |
