smithers: downgrade kernel to 5.15 for bluetooth bug workaround

auto-flake-update
Yorick van Pelt 2022-05-18 11:47:50 +02:00
parent 89771b9e0e
commit f07ade280b
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
2 changed files with 4 additions and 2 deletions

View File

@ -7,5 +7,4 @@
yorick.lumi-cache.enable = lib.mkForce false;
system.stateVersion = "21.05";
services.fwupd.enable = true;
}

View File

@ -11,7 +11,9 @@
boot.zfs.requestEncryptionCredentials = true;
boot.supportedFilesystems = [ "zfs" ];
boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
# FIXME: https://bugzilla.kernel.org/show_bug.cgi?id=215768
#boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
boot.kernelPackages = pkgs.linuxPackages_5_15;
networking.wireless.iwd.enable = true;
networking.hostId = "54a8968e";
@ -19,6 +21,7 @@
services.zfs.trim.enable = true;
hardware.bluetooth.enable = true;
services.fprintd.enable = true;
services.fwupd.enable = true;
boot.initrd.availableKernelModules = [ "i915" ];
boot.loader.timeout = 1;