libkookie: add support for hardware development

workstation/cad: add solvespace and kicad to global install
workstation/usb: add udev rule to allow non-root usb device access
wip/yesman
Katharina Fey 3 years ago
parent 73ed6a860c
commit 9a77e3f88c
Signed by: kookie
GPG Key ID: 90734A9E619C8A6C
  1. 4
      infra/libkookie/configuration/workstation/devel/cad.nix
  2. 6
      infra/libkookie/configuration/workstation/devel/usb.nix

@ -0,0 +1,4 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ solvespace kicad ];
}

@ -0,0 +1,6 @@
{ ... }:
{
services.udev.extraRules = ''SUBSYSTEM=="usb", MODE="0660", GROUP="usbdev"'';
users.groups.usbdev = {};
}
Loading…
Cancel
Save