unduck/shell.nix

7 lines
112 B
Nix
Raw Normal View History

2025-05-05 23:28:53 +01:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
];
}