mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 17:13:55 -05:00
hwModules/legion/go: add bazzite udev rules
This commit is contained in:
parent
c5f326b34d
commit
a6f6c42e88
|
@ -116,12 +116,18 @@ in {
|
|||
];
|
||||
|
||||
udev.extraRules = ''
|
||||
# Lenovo Legion Go Controller
|
||||
ACTION=="add", ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6182", RUN+="${pkgs.kmod}/bin/modprobe xpad" RUN+="/bin/sh -c 'echo 17ef 6182 > /sys/bus/usb/drivers/xpad/new_id'"
|
||||
|
||||
# SSD
|
||||
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="kyber"
|
||||
|
||||
# NVME
|
||||
ACTION=="add|change", KERNEL=="nvme[0-9]n[0-9]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="kyber"
|
||||
|
||||
# MicroSD
|
||||
ACTION=="add|change", KERNEL=="mmcblk[0-9]p[0-9]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="bfq"
|
||||
|
||||
# HDD
|
||||
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="bfq"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue