deemixer/shell.nix

8 lines
91 B
Nix
Raw Normal View History

2023-12-21 22:07:45 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
yarn
];
}