mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
16 lines
322 B
Nix
16 lines
322 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../common/cpu/amd
|
|
../../common/cpu/amd/pstate.nix
|
|
../../common/gpu/amd
|
|
../../common/pc/laptop
|
|
../../common/pc/ssd
|
|
];
|
|
|
|
# Enables ACPI platform profiles
|
|
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
|
|
kernelModules = [ "hp-wmi" ];
|
|
};
|
|
}
|