mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
feat(desktop): add voxtype module
This commit is contained in:
19
modules/hm/desktop/voxtype.nix
Normal file
19
modules/hm/desktop/voxtype.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user