feat: add udev rule to properly initialize apple superdrive
This commit is contained in:
parent
c4218a4681
commit
375f492cb4
3 changed files with 26 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./portals.nix
|
./portals.nix
|
||||||
./env.nix
|
./env.nix
|
||||||
|
./services
|
||||||
|
|
||||||
./system/printing.nix
|
./system/printing.nix
|
||||||
./system/audio.nix
|
./system/audio.nix
|
||||||
|
|
3
modules/services/default.nix
Normal file
3
modules/services/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
imports = [ ./udev.nix ];
|
||||||
|
}
|
22
modules/services/udev.nix
Normal file
22
modules/services/udev.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib.my) getExe' mkStringIf;
|
||||||
|
isDesktop = config.modules.system.roles.desktop.enable;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.udev.extraRules = ''
|
||||||
|
${mkStringIf isDesktop ''
|
||||||
|
# Rule for the MacBook Air SuperDrive
|
||||||
|
ACTION=="add", \
|
||||||
|
ATTRS{product}=="MacBook Air SuperDrive", \
|
||||||
|
ATTRS{idProduct}=="1500", ATTRS{idVendor}=="05ac", \
|
||||||
|
DRIVERS=="usb", \
|
||||||
|
RUN+="${getExe' pkgs.sg3_utils "sg_raw"} %r/sr%n EA 00 00 00 00 00 01"
|
||||||
|
''}
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue