Skip to content

Commit 87b30b5

Browse files
authored
Merge pull request #1477 from Flameopathic/init-Lenovo-14ILL10
lenovo/yoga/7/14ILL10: init
2 parents 3c5e126 + 16023fe commit 87b30b5

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ See code for all available configurations.
328328
| [LENOVO Yoga Slim 7 Pro-X 14ARH7 82ND](lenovo/yoga/7/14ARH7/nvidia) | `<nixos-hardware/lenovo/yoga/7/14ARH7/nvidia>` |
329329
| [Lenovo Yoga Slim 7i Pro X 14IAH7 (Integrated)](lenovo/yoga/7/14IAH7/integrated) | `<nixos-hardware/lenovo/yoga/7/14IAH7/integrated>` |
330330
| [Lenovo Yoga Slim 7i Pro X 14IAH7 (Hybrid)](lenovo/yoga/7/14IAH7/hybrid) | `<nixos-hardware/lenovo/yoga/7/14IAH7/hybrid>` |
331+
| [Lenovo Yoga Slim 7 14ILL10](lenovo/yoga/7/14ILL10) | `<nixos-hardware/lenovo/yoga/7/14ILL10>` |
331332
| [LENOVO Yoga 7 Slim Gen8](lenovo/yoga/7/slim/gen8) | `<nixos-hardware/lenovo/yoga/7/slim/gen8>` |
332333
| [MSI B550-A PRO](msi/b550-a-pro) | `<nixos-hardware/msi/b550-a-pro>` |
333334
| [MSI B350 TOMAHAWK](msi/b350-tomahawk) | `<nixos-hardware/msi/b350-tomahawk>` |

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@
275275
lenovo-yoga-7-14ARH7-nvidia = import ./lenovo/yoga/7/14ARH7/nvidia;
276276
lenovo-yoga-7-14IAH7-integrated = import ./lenovo/yoga/7/14IAH7/integrated;
277277
lenovo-yoga-7-14IAH7-hybrid = import ./lenovo/yoga/7/14IAH7/hybrid;
278+
lenovo-yoga-7-14ILL10 = import ./lenovo/yoga/7/14ILL10;
278279
lenovo-yoga-7-slim-gen8 = import ./lenovo/yoga/7/slim/gen8;
279280
letsnote-cf-lx4 = import ./panasonic/letsnote/cf-lx4;
280281
malibal-aon-s1-intel = import ./malibal/aon/s1;

lenovo/yoga/7/14ILL10/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Lenovo Slim 7 14ILL10
2+
3+
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.

lenovo/yoga/7/14ILL10/default.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{ lib, pkgs, ... }:
2+
{
3+
imports = [
4+
../../../../common/cpu/intel/lunar-lake
5+
../../../../common/pc/laptop
6+
../../../../common/pc/ssd
7+
];
8+
9+
# touchpad, wifi, and bluetooth do not work before 6.12
10+
config.boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.12") (
11+
lib.mkDefault pkgs.linuxPackages_latest
12+
);
13+
}

0 commit comments

Comments
 (0)