summary refs log tree commit diff
path: root/nixos/modules/programs/info.nix
blob: be6439dca5adc2f3909e6cbd5c1fb2a276275837 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ config, lib, pkgs, ... }:

with lib;

{

  options = {

    programs.info.enable = mkOption {
      type = types.bool;
      default = true;
      description = ''
        Whether to enable info pages and the <command>info</command> command.
      '';
    };

  };


  config = mkIf config.programs.info.enable {

    environment.systemPackages = [ pkgs.texinfoInteractive ];

    environment.pathsToLink = [ "/info" "/share/info" ];

    environment.extraOutputsToInstall = [ "info" ];

  };

}