Merge pull request #76852 from lovesegfault/fix-manual-boot-console
nixos-manual: boot.extraTTYs -> console.extraTTYs
This commit is contained in:
commit
d08fc1a002
2 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue