From 77ec877a8ca83caae445e1cd40936e3c3f16e567 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Oct 2009 14:35:10 +0000 Subject: [PATCH] * Fix the background of the manual. svn path=/nixos/trunk/; revision=17832 --- modules/services/misc/nixos-manual.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/misc/nixos-manual.nix b/modules/services/misc/nixos-manual.nix index a5a3e8977da6..04fc34c94fae 100644 --- a/modules/services/misc/nixos-manual.nix +++ b/modules/services/misc/nixos-manual.nix @@ -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"; } ];