feat: added man pages
This commit is contained in:
parent
b25967225e
commit
68057024b5
3 changed files with 18 additions and 0 deletions
|
|
@ -58,6 +58,7 @@
|
||||||
./i18n.nix
|
./i18n.nix
|
||||||
./kdeconnect.nix
|
./kdeconnect.nix
|
||||||
./keyd.nix
|
./keyd.nix
|
||||||
|
./man.nix
|
||||||
./mozillavpn.nix
|
./mozillavpn.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
./nix-ld.nix
|
./nix-ld.nix
|
||||||
|
|
|
||||||
16
modules/man.nix
Normal file
16
modules/man.nix
Normal 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
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
glibc
|
glibc
|
||||||
libcxx
|
libcxx
|
||||||
libllvm
|
libllvm
|
||||||
|
ncurses
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue