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

13 lines
304 B
Nix
Raw Normal View History

2025-03-03 19:32:11 -05:00
{ lib, ... }: {
2025-03-03 19:09:08 -05:00
raspberry-pi-nix.board = "bcm2712"; # RPI5 64bit
2025-03-03 19:32:11 -05:00
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 = {}; };
2025-03-03 19:09:08 -05:00
};
};
}