* Fix the background of the manual.

svn path=/nixos/trunk/; revision=17832
This commit is contained in:
Eelco Dolstra 2009-10-15 14:35:10 +00:00
parent da5f745603
commit 77ec877a8c

View file

@ -70,7 +70,7 @@ in
environment.systemPackages = [manual];
boot.extraTTYs = mkIf cfg.showManual [cfg.ttyNumber];
boot.extraTTYs = mkIf cfg.showManual ["tty${cfg.ttyNumber}"];
jobs = mkIf cfg.showManual
{ nixosManual =
@ -90,7 +90,7 @@ in
};
services.ttyBackgrounds.specificThemes = mkIf cfg.showManual
[ { tty = cfg.ttyNumber;
[ { tty = "tty${cfg.ttyNumber}";
theme = pkgs.themes "green";
}
];