nix/nixos/common/services/tabby.nix

12 lines
331 B
Nix

{ pkgs, pkgs-unstable, ... }: {
# Currently broken
services.tabby = {
package = pkgs-unstable.tabby;
enable = true;
indexInterval = "never"; # scheduler is an unknown command and thus fails
model = "TabbyML/StarCoder-1B"; # The defualt model
# acceleration = "rocm";
usageCollection = false;
};
}