mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
26 lines
747 B
Nix
26 lines
747 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
../../../../common/cpu/amd
|
||
|
../../../../common/cpu/amd/pstate.nix
|
||
|
../../../../common/gpu/amd
|
||
|
../../../../common/pc/laptop
|
||
|
../../../../common/pc/laptop/acpi_call.nix
|
||
|
../../../../common/pc/laptop/ssd
|
||
|
];
|
||
|
|
||
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||
|
boot.kernelModules = [ "synaptics_usb" ];
|
||
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.3") (lib.mkDefault pkgs.linuxPackages_latest);
|
||
|
|
||
|
# disable Scatter/Gather APU recently enabled by default,
|
||
|
# which results in white screen after display reconfiguration
|
||
|
boot.kernelParams = [ "amdgpu.sg_display=0" ];
|
||
|
|
||
|
services.xserver = {
|
||
|
videoDrivers = [ "amdgpu" ];
|
||
|
};
|
||
|
}
|