From 26cffe306d9f4bd26d43a5e22d70a6d6cc43131c Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 16 Oct 2019 18:40:50 +0200 Subject: [PATCH] Tweak to disable need for monitor to boot --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index 1c039ed..6d67030 100644 --- a/configuration.nix +++ b/configuration.nix @@ -13,6 +13,9 @@ boot.loader.raspberryPi.enable = true; boot.loader.raspberryPi.version = 3; boot.loader.raspberryPi.uboot.enable = true; + boot.loader.raspberryPi.firmwareConfig = '' + hdmi_force_hotplug=1 + ''; environment.systemPackages = with pkgs; [ raspberrypi-tools ];