13 lines
162 B
Nix
13 lines
162 B
Nix
{ pkgs, llm-agents }:
|
|
|
|
with pkgs;
|
|
let
|
|
shared-packages = import ../shared/packages.nix { inherit pkgs llm-agents; };
|
|
in
|
|
shared-packages
|
|
++ [
|
|
dockutil
|
|
mas
|
|
|
|
]
|