17 lines
273 B
Nix
17 lines
273 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.sydnix.documentation;
|
|
in {
|
|
options.sydnix.documentation = {
|
|
enable = lib.mkEnableOption "Docs";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.extraOutputsToInstall = [
|
|
"doc"
|
|
"info"
|
|
"man"
|
|
];
|
|
};
|
|
}
|