mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
lenovo/yoga/7/14ILL10: init
This commit is contained in:
3
lenovo/yoga/7/14ILL10/README.md
Normal file
3
lenovo/yoga/7/14ILL10/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Lenovo Slim 7 14ILL10
|
||||
|
||||
This module imports configuration for the Lunar Lake processors as well as ensuring that the Linux kernel is up to date enough for most features to be available. This does not make the device's built-in speakers or audio jack function.
|
||||
13
lenovo/yoga/7/14ILL10/default.nix
Normal file
13
lenovo/yoga/7/14ILL10/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../../../../common/cpu/intel/lunar-lake
|
||||
../../../../common/pc/laptop
|
||||
../../../../common/pc/ssd
|
||||
];
|
||||
|
||||
# touchpad, wifi, and bluetooth do not work before 6.12
|
||||
config.boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.12") (
|
||||
lib.mkDefault pkgs.linuxPackages_latest
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user