nixos-config/common/hardware/raspberry-pi.nix
2024-04-22 04:57:27 +02:00

19 lines
356 B
Nix

{lib, ...}: {
# Raspberry PI 3 B+
# Disable systemd-boot
boot.loader = {
systemd-boot = {
enable = false;
};
efi.canTouchEfiVariables = false;
};
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
# firmware
hardware.enableRedistributableFirmware = true;
}