update default branch to 24.05 update lockfile rgb keyboard support for yaseen got enry working again kernel 6.6
23 lines
419 B
Nix
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;
|
|
}
|