feat(dev): enable stlink udev rules for embedded development

This commit is contained in:
oddlama 2023-10-23 00:55:29 +02:00
parent 603b59cbe9
commit 753457e6d6
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 4 additions and 0 deletions

View file

@ -9,6 +9,7 @@ lib.optionalAttrs (!minimal) {
imports = [
inputs.nixseparatedebuginfod.nixosModules.default
./documentation.nix
./embedded.nix
./yubikey.nix
];

View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
services.udev.packages = [pkgs.stlink];
}