Merge pull request #76852 from lovesegfault/fix-manual-boot-console

nixos-manual: boot.extraTTYs -> console.extraTTYs
This commit is contained in:
Graham Christensen 2020-01-02 20:28:45 -05:00 committed by GitHub
commit d08fc1a002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ in
};
})
(mkIf (cfg.showManual && cfgd.enable && cfgd.nixos.enable) {
boot.extraTTYs = [ "tty${toString cfg.ttyNumber}" ];
console.extraTTYs = [ "tty${toString cfg.ttyNumber}" ];
systemd.services.nixos-manual = {
description = "NixOS Manual";

View file

@ -40,7 +40,7 @@ in
config = mkIf cfg.enable {
boot.extraTTYs = [ cfg.tty ];
console.extraTTYs = [ cfg.tty ];
systemd.services.rogue =
{ description = "Rogue dungeon crawling game";