mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
15 lines
238 B
Nix
15 lines
238 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/intel/meteor-lake
|
|
../../../common/pc
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
config = {
|
|
services.thermald.enable = lib.mkDefault true;
|
|
};
|
|
}
|