mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
335cffe9a9
This may help with installing on Darwin.
22 lines
485 B
Nix
22 lines
485 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
programs.man.enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to enable manual pages and the <command>man</command>
|
|
command. This also includes "man" outputs of all
|
|
<literal>home.packages</literal>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf config.programs.man.enable {
|
|
home.packages = [ pkgs.man ];
|
|
home.extraOutputsToInstall = [ "man" ];
|
|
};
|
|
}
|