mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-10-31 16:19:42 +01:00
21 lines
374 B
Nix
21 lines
374 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
|
|
];
|
|
|
|
config = {
|
|
services.thermald.enable = mkDefault true;
|
|
};
|
|
}
|