mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
Merge pull request #76852 from lovesegfault/fix-manual-boot-console
nixos-manual: boot.extraTTYs -> console.extraTTYs
This commit is contained in:
commit
d08fc1a002
@ -52,7 +52,7 @@ in
|
|||||||
};
|
};
|
||||||
})
|
})
|
||||||
(mkIf (cfg.showManual && cfgd.enable && cfgd.nixos.enable) {
|
(mkIf (cfg.showManual && cfgd.enable && cfgd.nixos.enable) {
|
||||||
boot.extraTTYs = [ "tty${toString cfg.ttyNumber}" ];
|
console.extraTTYs = [ "tty${toString cfg.ttyNumber}" ];
|
||||||
|
|
||||||
systemd.services.nixos-manual = {
|
systemd.services.nixos-manual = {
|
||||||
description = "NixOS Manual";
|
description = "NixOS Manual";
|
||||||
|
@ -40,7 +40,7 @@ in
|
|||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
boot.extraTTYs = [ cfg.tty ];
|
console.extraTTYs = [ cfg.tty ];
|
||||||
|
|
||||||
systemd.services.rogue =
|
systemd.services.rogue =
|
||||||
{ description = "Rogue dungeon crawling game";
|
{ description = "Rogue dungeon crawling game";
|
||||||
|
Loading…
Reference in New Issue
Block a user