From 62a829d51f8e0e643fdb37d9eacecfb79cfa56c1 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 29 Aug 2019 14:38:45 -0400 Subject: [PATCH] A comment on t his timeout --- nixos/modules/100tb.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos/modules/100tb.nix b/nixos/modules/100tb.nix index 9fd2a93a..c701acd7 100644 --- a/nixos/modules/100tb.nix +++ b/nixos/modules/100tb.nix @@ -50,11 +50,14 @@ in { }; config = - { boot.loader.timeout = 1; - boot.loader.grub.enable = true; + { boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/disk/by-id/${cfg.grubDeviceID}"; + # Get a slightly faster boot time than default. Maybe this could even be + # 0 but I'm not sure. + boot.loader.timeout = 1; + # Let me in to do subsequent configuration. networking.firewall.enable = false; services.openssh.enable = true; -- GitLab