TdAI / llama.cpp /.devops /nix /apps.nix
tda45's picture
Upload folder using huggingface_hub
76513ec verified
Raw
History Blame Contribute Delete
434 Bytes
{
perSystem =
{ config, lib, ... }:
{
apps =
let
inherit (config.packages) default;
binaries = [
"llama-cli"
"llama-embedding"
"llama-server"
"llama-quantize"
];
mkApp = name: {
type = "app";
program = "${default}/bin/${name}";
};
in
lib.genAttrs binaries mkApp;
};
}