feat(desktop): add voxtype module

This commit is contained in:
tux
2026-08-13 17:14:20 +05:30
parent 31f4218115
commit 69c2254f00
4 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
{ inputs, ... }: {
flake.modules.homeManager.desktop = { pkgs, ... }: {
imports = [
inputs.voxtype.homeManagerModules.default
];
programs.voxtype = {
enable = true;
package = pkgs.voxtype.onnx-cuda;
engine = "parakeet";
model.path = "/home/tux/.local/share/voxtype/models/parakeet-tdt-0.6b-v3";
service.enable = true;
settings = {
hotkey.enabled = false;
whisper.language = "en";
};
};
};
}