Files
corner/shell.nix
2025-03-13 23:56:02 +01:00

8 lines
88 B
Nix

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