pericyte: add mirotalk to env

This commit is contained in:
2025-11-01 20:17:34 -04:00
parent 32e806e54e
commit 987df4ff14
5 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ config, pkgs, lib, ... }: {
nixpkgs.overlays = [(final: prev: {
mirotalk = prev.buildNpmPackage {
pname = "afterwriter";
version = "1.17.3-2025-09-24";
src = prev.fetchFromGitHub {
owner = "miroslavpejic85";
repo = "mirotalk";
rev = "";
hash = "";
};
};
})];
environment.systemPackages = with pkgs; [
mirotalk
];
}