mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
set a minimum kernel
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
@@ -12,8 +12,7 @@
|
||||
libvdpau-va-gl
|
||||
];
|
||||
|
||||
# Latest Kernel
|
||||
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
||||
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.1") pkgs.linuxPackages_latest;
|
||||
|
||||
# energy savings
|
||||
hardware.bluetooth.powerOnBoot = lib.mkDefault false;
|
||||
|
||||
Reference in New Issue
Block a user