pulsebert: fix bluetooth

This commit is contained in:
Astro 2022-03-18 20:26:53 +01:00
parent 4c3a9ee4c2
commit 3391956bbf
1 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,10 @@
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot.kernelParams = [ "snd_bcm2835.enable_headphones=1" ];
# mkForce to get rid of "console=ttyAMA0" from sd-image-aarch64.nix
boot.kernelParams = lib.mkForce [
"snd_bcm2835.enable_headphones=1"
];
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";