refactor(tuxedo/pulse/15/gen2): simplify device expression

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
NAHO 2023-10-10 17:53:37 +02:00 committed by GitHub
parent 3d69759870
commit 6eeede605f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
["# Properly suspend the system."]
++ (
map
(device: "SUBSYSTEM==\"pci\", ACTION==\"add\", ATTR{vendor}==\"0x144d\", ATTR{device}==\"${device}\", RUN+=\"${pkgs.bash}/bin/sh -c '${pkgs.coreutils}/bin/echo 0 | ${pkgs.coreutils}/bin/tee /sys/bus/pci/devices/$kernel/d3cold_allowed'\"")
(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"]
)
);