links-page/shell.nix

11 lines
179 B
Nix
Raw Normal View History

2023-10-05 10:15:44 +00:00
# DEVELOPMENT shell environment
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "TWS Links page";
nativeBuildInputs = with pkgs.buildPackages; [
nodejs git
];
}