nixos-config/common/hardware/raspberry-pi.nix

17 lines
333 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{lib, ...}: {
2024-04-17 20:39:12 +02:00
# 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;
2024-04-17 22:28:27 +02:00
}