stockholm/makefu/2configs/hw/rad1o.nix

20 lines
693 B
Nix
Raw Normal View History

2015-08-14 13:59:05 +00:00
{ config, lib, pkgs, ... }:
{
2015-08-14 18:00:46 +00:00
2015-08-14 13:59:05 +00:00
environment.systemPackages = with pkgs; [
2016-10-19 10:31:13 +00:00
gnuradio-with-packages
2015-08-14 13:59:05 +00:00
gnuradio-osmosdr
gqrx
];
2015-08-14 18:00:46 +00:00
2015-08-14 13:59:05 +00:00
users.extraUsers.${config.krebs.build.user.name}.extraGroups = [ "dialout" ];
2015-08-14 18:00:46 +00:00
2015-08-14 13:59:05 +00:00
services.udev.extraRules = ''
ATTR{idVendor}=="1d50", ATTR{idProduct}=="604b", SYMLINK+="hackrf-jawbreaker-%k", MODE="0666", GROUP="dialout"
ATTR{idVendor}=="1d50", ATTR{idProduct}=="6089", SYMLINK+="hackrf-one-%k", MODE="0666", GROUP="dialout"
ATTR{idVendor}=="1d50", ATTR{idProduct}=="cc15", SYMLINK+="rad1o-%k", MODE="0666", GROUP="dialout"
ATTR{idVendor}=="1fc9", ATTR{idProduct}=="000c", SYMLINK+="nxp-dfu-%k", MODE="0666", GROUP="dialout"
'';
}