Enabled uboot and added raspberrypi-tool

This commit is contained in:
Serĉanto de Scio 2019-10-16 11:43:31 +10:00
parent 77e95bfcf7
commit 8bb9cb6270
Signed by: sercanto
GPG key ID: A4122FF3971B6865

View file

@ -23,6 +23,7 @@
raspberryPi = {
enable = true;
version = 3;
uboot.enable = true;
firmwareConfig = [
"arm_64bit=1" # Force kernel loading system to assume a 64-bit kernel
"hdmi_force_hotplug=1" # Enable headless booting
@ -46,4 +47,8 @@
enableRedistributableFirmware = true; # Enable support for Pi firmware blobs
};
environment.systemPackages = with pkgs; [
raspberrypi-tools # Userland tools for the Raspberry Pi board
];
}