feat(nix): add ffmpeg to devShell

This commit is contained in:
2026-04-02 18:30:54 -04:00
parent 4185723b8d
commit f0e1325a6c

View File

@@ -23,7 +23,8 @@
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "errornocord"; name = "errornocord";
buildInputs = [ buildInputs = with pkgs; [
ffmpeg
self'.packages.default self'.packages.default
]; ];
}; };