summary refs log tree commit diff
path: root/nixos/modules/virtualisation/qemu-vm.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-05-05 00:12:06 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-05-07 19:23:47 +0300
commit36f4b7f6ba9506a336587c5a528416e948299448 (patch)
treea5ddbeb20a9eeeb773b91ce6a91db0a096c62abd /nixos/modules/virtualisation/qemu-vm.nix
parent046e374c9958969462919d192872606bb9f0ed4a (diff)
downloadnixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar.gz
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar.bz2
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar.lz
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar.xz
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.tar.zst
nixpkgs-36f4b7f6ba9506a336587c5a528416e948299448.zip
virtualisation/qemu-vm.nix: remove ttys
unused.
Diffstat (limited to 'nixos/modules/virtualisation/qemu-vm.nix')
-rw-r--r--nixos/modules/virtualisation/qemu-vm.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 6acaf63c26a..5b98f359de0 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