1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/hp/elitebook/2560p/default.nix
2022-12-31 11:57:44 +01:00

19 lines
327 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
./network.nix
];
config = {
services.thermald.enable = mkDefault true;
};
}