dacbert: fix bluetooth

This commit is contained in:
Astro 2021-09-29 14:55:56 +02:00
parent 6a9fd9235d
commit c9a026f132
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@
}; };
}; };
kernelPackages = pkgs.linuxPackages_5_13; kernelPackages = pkgs.linuxPackages_5_13;
kernelParams = lib.mkForce [
"snd_bcm2835.enable_headphones=1"
# don't let sd-image-aarch64.nix setup serial console as it breaks bluetooth.
"console=tty0"
];
# Don't build ZFS for aarch64 (broken?) # Don't build ZFS for aarch64 (broken?)
supportedFilesystems = lib.mkForce [ "vfat" "ext4" ]; supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];