1
0
Fork 0
mirror of https://github.com/daylinmorgan/oizys.git synced 2025-01-10 15:27:33 -06:00
oizys/modules/llm/default.nix

19 lines
255 B
Nix

{
pkgs,
config,
mkOizysModule,
flake,
...
}:
mkOizysModule config "llm" {
environment.systemPackages = with pkgs; [
(python3.withPackages (ps:
with (flake.pkgs "self");
[
llm
llm-claude-3
]
))
];
}