12 lines
461 B
Nix
12 lines
461 B
Nix
{ 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 ];
|
|
} |