modules: system: put modules into folders
This commit is contained in:
parent
d5b09c48ef
commit
7bec7ae0f9
9 changed files with 6 additions and 6 deletions
43
modules/system/documentation/default.nix
Normal file
43
modules/system/documentation/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.system.documentation;
|
||||
in
|
||||
{
|
||||
options.my.system.documentation = with lib.my; {
|
||||
enable = mkDisableOption "Documentation integration";
|
||||
|
||||
dev.enable = mkDisableOption "Documentation aimed at developers";
|
||||
|
||||
info.enable = mkDisableOption "Documentation aimed at developers";
|
||||
|
||||
man = {
|
||||
enable = mkDisableOption "Documentation aimed at developers";
|
||||
|
||||
linux = mkDisableOption "Linux man pages (section 2 & 3)";
|
||||
};
|
||||
|
||||
nixos.enable = mkDisableOption "NixOS documentation";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
documentation = {
|
||||
enable = true;
|
||||
|
||||
dev.enable = cfg.dev.enable;
|
||||
|
||||
info.enable = cfg.info.enable;
|
||||
|
||||
man = {
|
||||
enable = cfg.man.enable;
|
||||
generateCaches = true;
|
||||
};
|
||||
|
||||
nixos.enable = cfg.nixos.enable;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; lib.optionals cfg.man.linux [
|
||||
man-pages
|
||||
man-pages-posix
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue