summaryrefslogtreecommitdiffstats
path: root/beagleboard/pocketbeagle/default.nix
blob: bc426300f4581a1498698c310fc620700629715d (plain)
1
2
3
4
5
6
7
8
9
10
{ lib, ... }:

{
  boot.kernelParams = [ "console=ttyO0,115200n8" ];

  boot.loader = {
    generic-extlinux-compatible.enable = lib.mkDefault true;
    grub.enable = lib.mkDefault false;
  };
}