1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-26 06:28:32 +02:00

framework: bump kernel version (#406)

* framework: bump kernel version
This commit is contained in:
Jörg Thalheim 2022-04-13 10:27:33 +01:00 committed by GitHub
parent f4160a629b
commit 5c95599061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,9 +9,9 @@
# https://kvark.github.io/linux/framework/2021/10/17/framework-nixos.html
boot.kernelParams = [ "mem_sleep_default=deep" ];
# Requires at least 5.12 for working wi-fi and bluetooth.
# Requires at least 5.16 for working wi-fi and bluetooth.
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.12") (lib.mkDefault pkgs.linuxPackages_latest);
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
# For fingerprint support
services.fprintd.enable = true;