Sigrok: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 1: | Line 1: | ||
For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the <code>libsigrok</code> package. To do so add the following to your config: | For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the <code>libsigrok</code> package. To do so add the following to your config:<syntaxhighlight lang="nix"> | ||
services.udev = { | |||
enable = true; | |||
< | packages = [ pkgs.libsigrok ]; | ||
} | |||
</syntaxhighlight> | |||