2009-07-14 18:27:46 +02:00
|
|
|
# This module includes the NixOS man-pages in the system environment,
|
|
|
|
# and optionally starts a browser that shows the NixOS manual on one
|
|
|
|
# of the virtual consoles. The latter is useful for the installation
|
|
|
|
# CD.
|
2009-01-09 00:30:23 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, baseModules, ... } @ extraArgs:
|
2009-01-09 00:30:23 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
let
|
2009-01-09 00:30:23 +01:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
cfg = config.services.nixosManual;
|
2009-01-09 00:30:23 +01:00
|
|
|
|
2013-10-24 19:58:34 +02:00
|
|
|
versionModule =
|
|
|
|
{ system.nixosVersionSuffix = config.system.nixosVersionSuffix;
|
|
|
|
system.nixosRevision = config.system.nixosRevision;
|
|
|
|
};
|
|
|
|
|
2013-10-28 15:48:20 +01:00
|
|
|
eval = evalModules {
|
|
|
|
modules = [ versionModule ] ++ baseModules;
|
|
|
|
args = (removeAttrs extraArgs ["config" "options"]) // { modules = [ ]; };
|
|
|
|
};
|
|
|
|
|
2009-09-18 17:27:10 +02:00
|
|
|
manual = import ../../../doc/manual {
|
2013-10-17 13:43:40 +02:00
|
|
|
inherit pkgs;
|
2013-11-01 16:44:03 +01:00
|
|
|
version = config.system.nixosVersion;
|
2013-10-24 19:58:34 +02:00
|
|
|
revision = config.system.nixosRevision;
|
2013-10-28 15:48:20 +01:00
|
|
|
options = eval.options;
|
2009-09-18 17:27:10 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-08-27 11:08:26 +02:00
|
|
|
entry = "${manual.manual}/share/doc/nixos/index.html";
|
2013-01-08 02:13:33 +01:00
|
|
|
|
|
|
|
help = pkgs.writeScriptBin "nixos-help"
|
|
|
|
''
|
|
|
|
#! ${pkgs.stdenv.shell} -e
|
2013-08-20 13:55:39 +02:00
|
|
|
browser="$BROWSER"
|
|
|
|
if [ -z "$browser" ]; then
|
|
|
|
browser="$(type -P xdg-open || true)"
|
|
|
|
if [ -z "$browser" ]; then
|
|
|
|
browser="$(type -P w3m || true)"
|
|
|
|
if [ -z "$browser" ]; then
|
|
|
|
echo "$0: unable to start a web browser; please set \$BROWSER"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2013-01-08 02:13:33 +01:00
|
|
|
fi
|
2013-08-20 13:55:39 +02:00
|
|
|
exec "$browser" ${entry}
|
2013-01-08 02:13:33 +01:00
|
|
|
'';
|
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
in
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
{
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
options = {
|
2009-01-09 00:30:23 +01:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
services.nixosManual.enable = mkOption {
|
2012-06-04 16:35:48 +02:00
|
|
|
type = types.bool;
|
2013-10-30 17:37:45 +01:00
|
|
|
default = true;
|
2009-07-14 18:27:46 +02:00
|
|
|
description = ''
|
|
|
|
Whether to build the NixOS manual pages.
|
|
|
|
'';
|
|
|
|
};
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
services.nixosManual.showManual = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2014-03-17 12:45:57 +01:00
|
|
|
default = false;
|
2009-07-14 18:27:46 +02:00
|
|
|
description = ''
|
|
|
|
Whether to show the NixOS manual on one of the virtual
|
|
|
|
consoles.
|
2009-01-09 00:30:23 +01:00
|
|
|
'';
|
2009-07-14 18:27:46 +02:00
|
|
|
};
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
services.nixosManual.ttyNumber = mkOption {
|
|
|
|
default = "8";
|
|
|
|
description = ''
|
|
|
|
Virtual console on which to show the manual.
|
|
|
|
'';
|
2009-01-09 00:30:23 +01:00
|
|
|
};
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
services.nixosManual.browser = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.path;
|
2009-07-14 18:27:46 +02:00
|
|
|
default = "${pkgs.w3m}/bin/w3m";
|
|
|
|
description = ''
|
|
|
|
Browser used to show the manual.
|
|
|
|
'';
|
2009-01-09 00:30:23 +01:00
|
|
|
};
|
2009-04-14 14:31:08 +02:00
|
|
|
|
2009-01-09 00:30:23 +01:00
|
|
|
};
|
2009-07-14 18:27:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2009-10-05 15:55:33 +02:00
|
|
|
system.build.manual = manual;
|
|
|
|
|
2013-01-08 02:13:33 +01:00
|
|
|
environment.systemPackages = [ manual.manpages help ];
|
2009-07-14 18:27:46 +02:00
|
|
|
|
2009-10-15 16:35:10 +02:00
|
|
|
boot.extraTTYs = mkIf cfg.showManual ["tty${cfg.ttyNumber}"];
|
2009-07-14 18:27:46 +02:00
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
systemd.services = optionalAttrs cfg.showManual
|
2012-10-04 22:15:10 +02:00
|
|
|
{ "nixos-manual" =
|
|
|
|
{ description = "NixOS Manual";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig =
|
2013-01-08 02:13:33 +01:00
|
|
|
{ ExecStart = "${cfg.browser} ${entry}";
|
2012-10-04 22:15:10 +02:00
|
|
|
StandardInput = "tty";
|
|
|
|
StandardOutput = "tty";
|
|
|
|
TTYPath = "/dev/tty${cfg.ttyNumber}";
|
|
|
|
TTYReset = true;
|
|
|
|
TTYVTDisallocate = true;
|
|
|
|
Restart = "always";
|
|
|
|
};
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
};
|
2009-07-14 18:27:46 +02:00
|
|
|
|
|
|
|
services.mingetty.helpLine = mkIf cfg.showManual
|
|
|
|
"\nPress <Alt-F${toString cfg.ttyNumber}> for the NixOS manual.";
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-07-14 18:27:46 +02:00
|
|
|
};
|
|
|
|
|
2009-01-09 00:30:23 +01:00
|
|
|
}
|