non important commit

This commit is contained in:
maxstrb 2026-02-12 16:45:00 +01:00
parent 6086a42c36
commit 05c8652059

View file

@ -0,0 +1,22 @@
{
description = "My motion canvas development shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells."${system}" = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_20
nodePackages.npm
ffmpeg
];
};
};
};
}