mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
27 lines
745 B
Nix
27 lines
745 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../../../../common/cpu/intel
|
||
|
../../../../common/pc/laptop
|
||
|
../../../../common/pc/laptop/acpi_call.nix
|
||
|
../../../../common/pc/laptop/ssd
|
||
|
];
|
||
|
|
||
|
# Needed for wifi
|
||
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||
|
|
||
|
# Cooling management
|
||
|
services.thermald.enable = lib.mkDefault true;
|
||
|
|
||
|
# Allows for updating firmware via `fwupdmgr`.
|
||
|
services.fwupd.enable = lib.mkDefault true;
|
||
|
|
||
|
# Enables ACPI platform profiles
|
||
|
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
|
||
|
kernelModules = [ "hp-wmi" ];
|
||
|
};
|
||
|
|
||
|
# reduces warnings/errors in boot log, seems to eliminate the ocassional boot hangs described in readme
|
||
|
hardware.enableAllFirmware = lib.mkDefault true;
|
||
|
}
|