let's try CI images again
Some checks failed
/ nvim-bundle (nvim-min) (push) Failing after 32s
/ check (push) Failing after 43s

This commit is contained in:
iofq 2026-03-20 20:46:27 -05:00
parent 9d8bfef042
commit ff12f87628
7 changed files with 62 additions and 5 deletions

View file

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

View file

@ -0,0 +1,10 @@
{
pkgs,
}:
(pkgs.docker-nixpkgs.nix.override {
nix = pkgs.nixVersions.latest;
extraContents = with pkgs; [
attic-client
nodejs
];
})