Skip to content

Commit

Permalink
Fix GRUB's display on all x86 boxesb
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed May 14, 2018
1 parent 410bdc3 commit c29c182
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 1 deletion.
5 changes: 5 additions & 0 deletions instances/c1.small.x86/installed.nix
@@ -1,5 +1,10 @@
{
boot.loader.grub.devices = [ "/dev/sda" "/dev/sdb" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down
5 changes: 5 additions & 0 deletions instances/c1.xlarge.x86/installed.nix
@@ -1,6 +1,11 @@
{ config, lib, pkgs, ... }:
{
boot.loader.grub.devices = [ "/dev/sda" "/dev/sdb" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down
6 changes: 6 additions & 0 deletions instances/m1.xlarge.x86/installed.nix
Expand Up @@ -3,6 +3,12 @@
boot.loader.grub.devices = [
"/dev/sda"
];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';


fileSystems = {
"/" = {
Expand Down
5 changes: 5 additions & 0 deletions instances/m2.xlarge.x86/installed.nix
@@ -1,5 +1,10 @@
{
boot.loader.grub.devices = [ "/dev/sda" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down
7 changes: 6 additions & 1 deletion instances/s1.large.x86/installed.nix
@@ -1,5 +1,10 @@
{
boot.loader.grub.devices = [ "/dev/sdo" ];
boot.loader.grub.devices = [ "/dev/sda" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down
5 changes: 5 additions & 0 deletions instances/t1.small.x86/installed.nix
@@ -1,5 +1,10 @@
{
boot.loader.grub.devices = [ "/dev/sda" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down
5 changes: 5 additions & 0 deletions instances/x1.small.x86/installed.nix
@@ -1,5 +1,10 @@
{
boot.loader.grub.devices = [ "/dev/sda" ];
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output serial console
terminal_input serial console
'';

fileSystems = {
"/" = {
Expand Down

0 comments on commit c29c182

Please sign in to comment.