init
Some checks failed
/ check (push) Failing after 1m14s

This commit is contained in:
iofq 2025-09-27 14:44:02 -05:00
commit c88460fecf
7 changed files with 100 additions and 0 deletions

10
pkgs/nix-with-node.nix Normal file
View file

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