pulsebert: add bluetooth workarounds

This commit is contained in:
Astro 2022-03-29 22:53:12 +02:00
parent 8b39aedd31
commit a65577c5fe
1 changed files with 7 additions and 1 deletions

View File

@ -21,6 +21,7 @@ in
kernelPackages = pkgs.linuxPackages_latest;
# No ZFS on latest kernel:
supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];
kernelParams = [ "console=tty0" ];
tmpOnTmpfs = true;
};
hardware.deviceTree = {
@ -82,8 +83,13 @@ in
wheelNeedsPassword = false;
};
c3d2.audioServer.enable = true;
c3d2.k-ot.enable = true;
c3d2.audioServer.enable = true;
# quirk for this pi3
systemd.services.bluetooth.serviceConfig = {
Restart = "always";
RestartSec = "1s";
};
services.nginx = {
enable = true;