streamboy/shell.nix
2025-02-18 22:03:27 -07:00

5 lines
82 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [deno];
}