add CI images to repo
Some checks failed
/ check (push) Has been cancelled
build / nvim-bundle (nvim) (push) Waiting to run

This commit is contained in:
iofq 2026-02-28 00:01:58 -06:00
parent abce966b76
commit 9422a7db7a
8 changed files with 101 additions and 10 deletions

View file

@ -7,5 +7,6 @@
nativeBuildInputs = [ pkgs.jujutsu ];
doCheck = false;
};
nix-with-node = import ./nix-with-node { inherit pkgs; };
}
// import ./nvim { inherit inputs pkgs; }

View file

@ -0,0 +1,32 @@
{ pkgs, ... }:
pkgs.dockerTools.buildLayeredImage {
name = "nix-with-node";
contents = with pkgs; [
./root
bashInteractive
cacert
coreutils
git
gnutar
gzip
jq
nix
nodejs
openssh
shadow
xz
pkgs.dockerTools.fakeNss
];
config = {
Cmd = [ "/bin/bash" ];
WorkingDir = "/home/nixbld1";
Env = [
"ENV=/etc/profile.d/nix.sh"
"NIX_BUILD_SHELL=/bin/bash"
"PATH=/usr/bin:/bin"
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
"USER=root"
];
};
}

View file

@ -0,0 +1,3 @@
accept-flake-config = true
experimental-features = nix-command flakes
max-jobs = auto