mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
14 lines
347 B
Nix
14 lines
347 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../../../../common/cpu/intel/lunar-lake
|
|
../../../../common/pc/laptop
|
|
../../../../common/pc/ssd
|
|
];
|
|
|
|
# device will not boot in kernel versions older than 6.15
|
|
config.boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.15") (
|
|
lib.mkDefault pkgs.linuxPackages_latest
|
|
);
|
|
}
|