* upstart-jobs/manual.nix:

- Replace "optional" function by one "mkIf".
  - Pretty-print (indentation, extra lines, no trailing-whitespaces).

svn path=/nixos/branches/modular-nixos/; revision=15025
This commit is contained in:
Nicolas Pierron 2009-04-14 12:31:08 +00:00
parent 9741be988c
commit 47b61bdd4a

View File

@ -5,65 +5,78 @@
let let
inherit (pkgs.lib) mkOption; inherit (pkgs.lib) mkOption;
options = { options = {
services = { services = {
showManual = { showManual = {
enable = mkOption { enable = mkOption {
default = false; default = false;
description = " description = "
Whether to show the NixOS manual on the tty7 Whether to show the NixOS manual on the tty7
"; ";
}; };
ttyNumber = mkOption { ttyNumber = mkOption {
default = "7"; default = "7";
description = " description = "
TTY number name to show the manual on TTY number name to show the manual on
"; ";
}; };
browserPackage = mkOption { browserPackage = mkOption {
default = pkgs.w3m; default = pkgs.w3m;
description = " description = "
Package containing the browser to be used Package containing the browser to be used
"; ";
}; };
browserCommand = mkOption { browserCommand = mkOption {
default = "bin/w3m"; default = "bin/w3m";
description = " description = "
Command (command path is relative to browserPackage) to run the browser Command (command path is relative to browserPackage) to run the browser
"; ";
}; };
manualFile = mkOption { manualFile = mkOption {
default = null; default = null;
description = " description = "
NixOS manual HTML file NixOS manual HTML file
"; ";
}; };
}; # showManual
}; # services
}; };
};
};
inherit(pkgs.lib) optional;
inherit (config.services.showManual) enable ttyNumber browserPackage browserCommand
manualFile;
realManualFile = if manualFile == null then
(import ../doc/manual {nixpkgs = pkgs;})+"/manual.html"
else manualFile;
in in
{ let
cfg = config.services.showManual;
inherit (cfg) enable ttyNumber browserPackage browserCommand manualFile;
realManualFile =
if manualFile == null then
(import ../doc/manual {nixpkgs = pkgs;})+"/manual.html"
else
manualFile;
inherit (pkgs.lib) mkIf mkThenElse;
in
mkIf enable {
require = [ require = [
options options
]; ];
boot = { boot = {
extraTTYs = optional enable ttyNumber; extraTTYs = [ ttyNumber ];
}; };
services = { services = {
extraJobs = optional enable {
extraJobs = [{
name = "showManual"; name = "showManual";
job = '' job = ''
@ -73,15 +86,21 @@ in
stop on shutdown stop on shutdown
respawn ${browserPackage}/${browserCommand} ${realManualFile} < /dev/tty${toString ttyNumber} > /dev/tty${toString ttyNumber} 2>&1 respawn ${browserPackage}/${browserCommand} ${realManualFile} < /dev/tty${toString ttyNumber} > /dev/tty${toString ttyNumber} 2>&1
''; '';
}; }];
ttyBackgrounds = { ttyBackgrounds = {
specificThemes = optional enable { specificThemes = [{
tty = ttyNumber; tty = ttyNumber;
theme = pkgs.themes "green"; theme = pkgs.themes "green";
}];
}; };
};
mingetty = { mingetty = {
helpLine = if enable then "\nPress <Alt-F${toString ttyNumber}> for NixOS manual." else ""; helpLine = mkThenElse {
thenPart = "\nPress <Alt-F${toString ttyNumber}> for NixOS manual.";
elsePart = "";
}; };
}; };
};
} }