mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
14 lines
274 B
Nix
14 lines
274 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../../fix-boot-quirk.nix
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
|
}
|