feat: added man pages

This commit is contained in:
Jacob Bachmann 2024-01-23 01:19:15 +01:00
parent b25967225e
commit 68057024b5
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
3 changed files with 18 additions and 0 deletions

View file

@ -58,6 +58,7 @@
./i18n.nix
./kdeconnect.nix
./keyd.nix
./man.nix
./mozillavpn.nix
./network.nix
./nix-ld.nix

16
modules/man.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }: {
documentation = {
enable = true;
doc.enable = true;
dev.enable = true;
man.enable = true;
};
environment.systemPackages = with pkgs; [
man-pages
man-pages-posix
ncurses
];
}

View file

@ -6,6 +6,7 @@
glibc
libcxx
libllvm
ncurses
];
};
}