From 36f4b7f6ba9506a336587c5a528416e948299448 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 5 May 2018 00:12:06 +0200 Subject: [PATCH] virtualisation/qemu-vm.nix: remove ttys unused. --- nixos/modules/virtualisation/qemu-vm.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 6acaf63c26a8..5b98f359de02 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -25,7 +25,6 @@ let qemuGraphics = lib.optionalString (!cfg.graphics) "-nographic"; kernelConsole = if cfg.graphics then "" else "console=${qemuSerialDevice}"; - ttys = [ "tty1" "tty2" "tty3" "tty4" "tty5" "tty6" ]; # XXX: This is very ugly and in the future we really should use attribute # sets to build ALL of the QEMU flags instead of this mixed mess of Nix