Inital commit, some scripts to easily mess with piper-tts.

This commit is contained in:
Gabe Venberg 2025-10-20 12:14:31 +02:00
commit 2dfb7198fb
5 changed files with 110 additions and 0 deletions

28
flake.nix Normal file
View file

@ -0,0 +1,28 @@
{
description = "Basic text to speech repo.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in
with pkgs; {
devShells.default = mkShell {
buildInputs = [
just
piper-tts
ffmpeg
python3
curl
];
};
});
}