1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-13 16:23:39 +02:00
nixos-hardware/hp/elitebook/2560p/default.nix
2022-02-04 13:48:49 +01:00

23 lines
389 B
Nix

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