images/pkgs/nix-with-node.nix
iofq 4e6f038898
Some checks failed
/ check (push) Failing after 1m11s
init
2025-09-27 16:57:38 -05:00

10 lines
147 B
Nix

{ pkgs, ... }:
pkgs.dockerTools.buildLayeredImage {
name = "nix-with-node";
contents = with pkgs; [
nix
nodejs
bash
git
];
}