nixos-hardware/hp/notebook/14-df0023/default.nix

17 lines
308 B
Nix
Raw Normal View History

2023-05-26 02:38:31 +02:00
{ config, lib, ... }:
with lib;
{
imports = [
../../../common/cpu/intel
../../../common/cpu/intel/sandy-bridge
../../../common/pc
../../../common/pc/laptop
../../../common/pc/laptop/hdd
../../../common/pc/hdd
];
config = {
services.thermald.enable = mkDefault true;
};
}