nixos-config/common/hardware/raspberry-pi.nix
Tasia Iso 2cc169a202
big update, see desc
update default branch to 24.05
update lockfile
rgb keyboard support for yaseen
got enry working again
kernel 6.6
2024-05-30 17:28:31 +02:00

23 lines
419 B
Nix

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