info: add module

This is a module for managing the GNU info directory for the user
profile. See comments at the top of `modules/programs/info.nix` for
further information.
This commit is contained in:
Christopher League 2017-05-24 16:55:12 -04:00 committed by Robert Helgesson
parent a4e96843e5
commit ff65781b84
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
2 changed files with 78 additions and 0 deletions

View file

@ -19,6 +19,7 @@ let
./programs/firefox.nix
./programs/git.nix
./programs/gnome-terminal.nix
./programs/info.nix
./programs/lesspipe.nix
./programs/ssh.nix
./programs/texlive.nix

77
modules/programs/info.nix Normal file
View file

@ -0,0 +1,77 @@
# info.nix -- install texinfo, set INFOPATH, create `dir` file
# This is a helper for the GNU info documentation system. By default,
# the `info` command (and the Info subsystem within Emacs) gives easy
# access to the info files stored system-wide, but not info files in
# your ~/.nix-profile.
# We set $INFOPATH to include `/run/current-system/sw/share/info` and
# `~/.nix-profile/share/info` but it's not enough. Although info can
# then find files when you explicitly ask for them, it doesn't show
# them to you in the table of contents on startup. To do that requires
# a `dir` file. NixOS keeps the system-wide `dir` file up to date, but
# ignores home-installed packages.
# So this module contains an activation script that generates the
# `dir` for your home profile. Then when you start info (and both
# `dir` files are in your $INFOPATH), it will *merge* the contents of
# the two files, showing you a unified table of contents for all
# packages. This is really nice.
{ config, lib, pkgs, ... }:
with lib;
with import ../lib/dag.nix;
let
cfg = config.programs.info;
# Indexes info files found in this location
homeInfoPath = "$HOME/.nix-profile/share/info";
# Installs this package -- the interactive just means that it
# includes the curses `info` program. We also use `install-info`
# from this package in the activation script.
infoPkg = pkgs.texinfoInteractive;
in
{
options = {
programs.info = {
enable = mkEnableOption "GNU Info";
homeInfoDirLocation = mkOption {
default = "$HOME/.cache/info";
description = ''
Directory in which to store the info <filename>dir</filename>
file within your home.
'';
};
};
};
config = mkIf cfg.enable {
assertions = [{
assertion = config.home.sessionVariableSetter != "pam";
message = ''
The info module does not work with PAM as a session variable setter.
'';
}];
home.sessionVariables.INFOPATH =
"${cfg.homeInfoDirLocation}\${INFOPATH:+:}\${INFOPATH}";
home.activation.createHomeInfoDir = dagEntryAfter ["installPackages"] ''
$DRY_RUN_CMD mkdir -p "${cfg.homeInfoDirLocation}"
$DRY_RUN_CMD rm -f "${cfg.homeInfoDirLocation}/dir"
if [[ -d "${homeInfoPath}" ]]; then
find -L "${homeInfoPath}" \( -name '*.info' -o -name '*.info.gz' \) \
-exec $DRY_RUN_CMD ${infoPkg}/bin/install-info '{}' \
"${cfg.homeInfoDirLocation}/dir" \;
fi
'';
home.packages = [infoPkg];
};
}