diamond-in commited on
Commit
6566544
·
verified ·
1 Parent(s): 7f50f92

Update .nix/env.nix

Browse files
Files changed (1) hide show
  1. .nix/env.nix +10 -0
.nix/env.nix CHANGED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ { pkgs ? import <nixpkgs> {} }:
2
+ pkgs.mkShell {
3
+ buildInputs = with pkgs; [
4
+ nodejs_20
5
+ python3
6
+ ffmpeg
7
+ chromium
8
+ playwright
9
+ ];
10
+ }