Implements speech-to-text (via whisper-cpp) and text-to-speech (via espeak) functionality with key bindings. Replaces coreutils with busybox for lighter dependencies and removes explicit buildInputs since all paths are hardcoded.
14 lines
570 B
Nix
14 lines
570 B
Nix
{pkgs, ...}: {
|
|
# Custom packages registry
|
|
# Each package is defined in its own directory under pkgs/
|
|
code2prompt = pkgs.callPackage ./code2prompt {};
|
|
hyprpaper-random = pkgs.callPackage ./hyprpaper-random {};
|
|
launch-webapp = pkgs.callPackage ./launch-webapp {};
|
|
mem0 = pkgs.callPackage ./mem0 {};
|
|
msty-studio = pkgs.callPackage ./msty-studio {};
|
|
pomodoro-timer = pkgs.callPackage ./pomodoro-timer {};
|
|
stt-ptt = pkgs.callPackage ./stt-ptt {};
|
|
tuxedo-backlight = pkgs.callPackage ./tuxedo-backlight {};
|
|
zellij-ps = pkgs.callPackage ./zellij-ps {};
|
|
}
|