HP Elitebook 830 G6 (#904)

Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
This commit is contained in:
Milo Oien-Rochat
2024-04-30 03:09:35 -05:00
committed by GitHub
parent 53db5e1070
commit cdbb5bb040
4 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# HP Elitebook 830 G6
## solved problems
* KDE Plasma 5 (haven't tested others), ~20% of the time freezes at login screen on resume - setting hardare.enableAllFirmware seems to fix
## Unsolved Problems
* sometimes fails to sleep (seems to be an application causing it, so probably not a driver/kernel problem)

View File

@@ -0,0 +1,26 @@
{ 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;
}