blogbot/shell.nix
2025-01-11 20:22:47 -07:00

4 lines
81 B
Nix

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