Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ bin/
node_modules/
.make/
.envrc
.direnv/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_ := $(shell mkdir -p .make)

PULUMI := ${CURDIR}/bin/pulumi
PULUMI ?= ${CURDIR}/bin/pulumi

.PHONY: preview diff up refresh stack lint format install

Expand Down
1 change: 1 addition & 0 deletions hack/nix.envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
17 changes: 17 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
pkgs ? import <nixpkgs> { },
}:

pkgs.mkShellNoCC {
packages = with pkgs; [
dprint
gnumake
nixfmt-tree
nodejs_24
Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Node.js version specified here (nodejs_24) is inconsistent with the version in .nvmrc (22.19.0). This could lead to different behavior between Nix and non-Nix development environments. Consider using nodejs_22 instead to match the version specified in .nvmrc.

Suggested change
nodejs_24
nodejs_22

Copilot uses AI. Check for mistakes.
shellcheck
pulumi-bin
yarn
];

PULUMI = pkgs.pulumi-bin + "/bin/pulumi";
}