mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
af694376e2
This is my first upstream contribution (intend to contribute configs for my NUC, GPD, and ClockworkPi uConsole/DevTerm). Essentially, this change resolves #492, by adding the `common/{cpu,gpu}/amd` Nix fragments to the `imports` list for the Thinkpad P14s.
17 lines
719 B
Nix
17 lines
719 B
Nix
{ lib, pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
../../../../../common/pc/laptop/acpi_call.nix
|
|
../../../../../common/cpu/amd
|
|
../../../../../common/gpu/amd
|
|
];
|
|
|
|
# For suspending to RAM, set Config -> Power -> Sleep State to "Linux" in EFI.
|
|
|
|
# amdgpu.backlight=0 makes the backlight work
|
|
# acpi_backlight=none allows the backlight save/load systemd service to work on older kernel versions
|
|
boot.kernelParams = [ "amdgpu.backlight=0" ] ++ lib.optional (lib.versionOlder config.boot.kernelPackages.kernel.version "6.1.6") "acpi_backlight=none";
|
|
|
|
# For mainline support of rtw89 wireless networking
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
|
|
}
|