modules: system: move 'documentation'

This commit is contained in:
Bruno BELANYI 2021-05-29 16:53:44 +02:00
parent 377c97ea9f
commit 43ef533ae1
3 changed files with 3 additions and 3 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./documentation.nix
./language.nix
./media.nix
./users.nix

View file

@ -0,0 +1,40 @@
{ 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 = lib.optional cfg.man.linux pkgs.manpages;
};
}