about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-04-23 13:38:30 +0200
committerGitHub <noreply@github.com>2020-04-23 13:38:30 +0200
commit06a34e69ad4fed8178ce4994254045875806b0ee (patch)
tree02270c15475ac55fa7e8bf95080d4cf2703b0f78 /nixos
parent25605d2e3f76e6b457825ecee5bc8fd68c282528 (diff)
parentf09b8be73dbfd6d25cc7fe8ee2352dfc4751b231 (diff)
Merge pull request #85832 from benley/benley/grub-serial
installer test: Fix grub extraConfig syntax
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/installer.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index c5abd458ec9a9..8d1bfa96d03d6 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -29,7 +29,7 @@ let
             boot.loader.grub.splashImage = null;
           ''}
 
-          boot.loader.grub.extraConfig = "serial; terminal_output.serial";
+          boot.loader.grub.extraConfig = "serial; terminal_output serial";
           ${if grubUseEfi then ''
             boot.loader.grub.device = "nodev";
             boot.loader.grub.efiSupport = true;