unduck/shell.nix
Troy 9fb7400ef8
All checks were successful
Docker / build-and-push-image (push) Successful in 1m54s
first commit
2025-05-05 23:28:53 +01:00

6 lines
112 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
];
}