rpi4: remove loader.raspberryPi as it's legacy

This commit is contained in:
Domen Kožar 2021-05-12 14:37:30 +02:00
parent cdaf66c0a0
commit 2b4ed534a8
No known key found for this signature in database
GPG Key ID: C2FFBCAFD2C24246
1 changed files with 2 additions and 11 deletions

View File

@ -6,16 +6,8 @@
initrd.availableKernelModules = [ "usbhid" "usb_storage" "vc4" ];
loader = {
raspberryPi = {
enable = true;
version = 4;
firmwareConfig = ''
dtparam=audio=on
gpu_mem=192
'';
};
grub.enable = false;
generic-extlinux-compatible.enable = true;
grub.enable = lib.mkDefault false;
generic-extlinux-compatible.enable = lib.mkDefault true;
};
};
@ -23,5 +15,4 @@
# Required for the Wireless firmware
hardware.enableRedistributableFirmware = true;
}