images/pkgs/nix-with-node.nix
iofq 0746f7b19e
Some checks failed
/ check (push) Failing after 39s
init
2025-09-27 17:28:24 -05:00

10 lines
147 B
Nix

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