Files
nix-config/modules/thunderbolt.nix
Kopatz 7f2ec92017 dell
2025-11-01 21:24:07 +01:00

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"
'';
}