nixos-hardware/hp/elitebook/2560p/default.nix

19 lines
327 B
Nix
Raw Permalink Normal View History

2022-12-31 11:52:38 +01:00
{ config, lib, ... }:
2022-01-24 21:15:10 +01:00
with lib;
{
imports = [
../../../common/cpu/intel
../../../common/cpu/intel/sandy-bridge
../../../common/pc
../../../common/pc/laptop
../../../common/pc/laptop/hdd
../../../common/pc/hdd
./network.nix
];
config = {
services.thermald.enable = mkDefault true;
};
}