1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-14 08:23:25 +00:00
.dotfiles/nixos/hosts/near/hardware-configuration.nix
2025-03-03 19:32:11 -05:00

12 lines
304 B
Nix

{ lib, ... }: {
raspberry-pi-nix.board = "bcm2712"; # RPI5 64bit
hardware.raspberry-pi.config.all = {
base-dt-params = {
BOOT_UART = { enable = true; value = 1; };
uart_2ndstage = { enable = true; value = 1; };
};
dt-overlays = {
disable-bt = { enable = true; params = {}; };
};
};
}