Added coral TPU driver compile files. Try to fix passbolt YAML error.

This commit is contained in:
Raphaël Numbus
2026-03-03 14:23:53 +01:00
parent 501383bc8d
commit 4d1448189c
4 changed files with 107 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
let
libedgetpu = pkgs.callPackage ./libedgetpu.nix {};
gasket = config.boot.kernelPackages.callPackage ./gasket.nix {};
in
{
services.udev.packages = [ libedgetpu ];
users.groups.plugdev = {};
boot.extraModulePackages = [ gasket ];
}