From 7d579743ea7eaa5bc9d7b8d5ed94e6ad3d7428eb Mon Sep 17 00:00:00 2001 From: js0ny Date: Mon, 13 Oct 2025 09:33:46 +0100 Subject: [PATCH] nix: xilinx udev --- nixcfgs/hosts/zephyrus/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixcfgs/hosts/zephyrus/default.nix b/nixcfgs/hosts/zephyrus/default.nix index 02b5a0e..ef9c276 100644 --- a/nixcfgs/hosts/zephyrus/default.nix +++ b/nixcfgs/hosts/zephyrus/default.nix @@ -37,5 +37,8 @@ boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; + services.udev.extraRules = '' + ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", MODE="0666", GROUP="wheel" + ''; system.stateVersion = "25.05"; }