mirror of
https://github.com/NixOS/nixos-hardware
synced 2025-01-12 11:59:46 +01:00
87656d7ee1
The E14 has a i5-10210U which is from comet lake. see https://www.intel.com/content/www/us/en/products/sku/195436/intel-core-i510210u-processor-6m-cache-up-to-4-20-ghz/specifications.html
12 lines
199 B
Nix
12 lines
199 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../../common/cpu/intel/comet-lake
|
|
];
|
|
|
|
hardware.intelgpu.vaapiDriver = "intel-media-driver";
|
|
|
|
services.throttled.enable = lib.mkDefault true;
|
|
}
|