9 lines
310 B
Nix
9 lines
310 B
Nix
{
|
|
services.hardware.bolt.enable = true;
|
|
services.udev.extraRules = ''
|
|
# Always authorize thunderbolt connections when they are plugged in.
|
|
# This is to make sure the USB hub of Thunderbolt is working.
|
|
ACTION=="add", SUBSYSTEM=="thunderbolt", ATTR{authorized}=="0", ATTR{authorized}="1"
|
|
'';
|
|
}
|