Based directly on the HP Laptop 14s-dq2024nf. See the README along with `ad0b1c0763` and `767e9083a0` for additional information.
14 lines
235 B
Nix
14 lines
235 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/intel/ice-lake
|
|
../../../common/pc
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
config = {
|
|
services.thermald.enable = lib.mkDefault true;
|
|
};
|
|
}
|