Skip to content
Merged
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
50 changes: 34 additions & 16 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -147,22 +147,40 @@
};

devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bun
git
bash
nixfmt-rfc-style

# Documentation
mdbook
mdbook-mermaid
mdbook-linkcheck
mdbook-pagetoc

# Terminal bench
uv
asciinema
];
buildInputs =
with pkgs;
[
bun

# Node + build tooling
nodejs
gnumake

# Common CLIs
git
bash

# Nix tooling
nixfmt-rfc-style

# Repo linting (make static-check)
go
shellcheck
shfmt
gh
jq

# Documentation
mdbook
mdbook-mermaid
mdbook-linkcheck
mdbook-pagetoc

# Terminal bench
uv
asciinema
]
++ lib.optionals stdenv.isLinux [ docker ];
};
}
);
Expand Down