1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-01 16:49:40 +01:00
nixos-hardware/hp/elitebook/2560p/default.nix

16 lines
270 B
Nix

{ config, lib, ... }:
with lib;
{
imports = [
../../../common/cpu/intel/sandy-bridge
../../../common/pc
../../../common/pc/laptop
../../../common/pc/laptop/hdd
./network.nix
];
config = {
services.thermald.enable = mkDefault true;
};
}