unduck/shell.nix

7 lines
112 B
Nix
Raw Normal View History

2025-02-27 13:03:08 +00:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
2025-03-05 23:26:00 +00:00
nodejs
2025-02-27 13:03:08 +00:00
];
}