links-page/shell.nix
2023-10-05 06:15:44 -04:00

11 lines
179 B
Nix

# DEVELOPMENT shell environment
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "TWS Links page";
nativeBuildInputs = with pkgs.buildPackages; [
nodejs git
];
}