mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
17 lines
308 B
Nix
17 lines
308 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|