hp elitebook 830 g6

untested, hoping this eliminates intermittent sleep/resume problems
This commit is contained in:
Milo Oien-Rochat 2024-01-15 11:22:15 -06:00 committed by Mic92
parent 406ce62ea8
commit 69749dd29c
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
imports = [
../../../../common/cpu/intel
../../../../common/pc/laptop
../../../../common/pc/laptop/acpi_call.nix
../../../../common/pc/laptop/ssd
];
# is there any redistributable firmware for this device?
hardware.enableRedistributableFirmware = true;
# Cooling management
services.thermald.enable = lib.mkDefault true;
# Allows for updating firmware via `fwupdmgr`.
services.fwupd.enable = lib.mkDefault true;
}