cdf849625b
This reverts commit 7b569a25fe2d8868c597322eb5b64a8aa4ab7ed6.
23 lines
551 B
Nix
23 lines
551 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../../../common/cpu/amd
|
|
../../../../common/gpu/amd
|
|
../../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
hardware.amdgpu.loadInInitrd = lib.mkDefault false;
|
|
|
|
services.udev.extraRules = builtins.concatStringsSep "\n" (
|
|
["# Properly suspend the system."]
|
|
++ (
|
|
map
|
|
(device: ''SUBSYSTEM=="pci", ACTION=="add", ATTR{vendor}=="0x144d", ATTR{device}=="${device}", RUN+="${pkgs.runtimeShell} -c 'echo 0 > /sys/bus/pci/devices/$kernel/d3cold_allowed'"'')
|
|
["0xa80a" "0xa808"]
|
|
)
|
|
);
|
|
}
|