From a456a10fbd15bcf0f9001b22eebca0223504fd94 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 18 Jun 2020 16:17:40 +0200 Subject: [PATCH] fix: disable systemd-boot.editor --- hardware/base.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hardware/base.nix b/hardware/base.nix index 4042b49..0d76bd8 100644 --- a/hardware/base.nix +++ b/hardware/base.nix @@ -14,6 +14,7 @@ boot.supportedFilesystems = [ "ntfs" ]; boot.kernelPackages = pkgs.linuxPackages_latest; boot.loader.systemd-boot.enable = true; + boot.loader.systemd-boot.editor = false; boot.loader.efi.canTouchEfiVariables = true; services.smartd.enable = true;