From 9ad10794d1e471f935927b5bf158a0fc4773bbbb Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 16 Dec 2014 13:47:58 +0100 Subject: common-workstation: Fix udev extraRules. Using # at the end of rules doesn't seem to be accepted by udev, so let's use lines beginning with #. Signed-off-by: aszlig --- common-workstation.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common-workstation.nix b/common-workstation.nix index 3c8005fb..55cfdb87 100644 --- a/common-workstation.nix +++ b/common-workstation.nix @@ -87,10 +87,12 @@ in { printing.enable = true; udev.extraRules = '' + # aXbo S.P.A.C. SUBSYSTEM=="tty", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", \ ATTRS{serial}=="0001", OWNER="aszlig", SYMLINK+="axbo" + # Enttec DMX device SUBSYSTEM=="usb*|tty", ACTION=="add|change", ATTRS{idVendor}=="0403", \ - ATTRS{idProduct}=="6001", OWNER="aszlig" # Enttec + ATTRS{idProduct}=="6001", OWNER="aszlig" ''; virtualboxHost.enable = true; -- cgit 1.4.1