Skip to content
Merged
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Applications:
* Repo cleaner `bfg`
* `cachix`
* `chamber`
* `Claude Code (`claude`)
* `coderabbit` CLI
* `colima` (macOS)
* `detect-secrets`
* `docker` (macOS)
Expand Down
187 changes: 179 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
description = "Stackrox development environment";

nixConfig = {
substituters = [
extra-substituters = [
"https://stackrox.cachix.org"
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://nixpkgs-terraform.cachix.org"
"https://cache.numtide.com"
];
trusted-public-keys = [
extra-trusted-public-keys = [
"stackrox.cachix.org-1:Wnn8TKAitOTWKfTvvHiHzJjXy0YfiwoK6rrVzXt/trA="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-terraform.cachix.org-1:8Sit092rIdAVENA3ZVeH9hzSiqI/jng6JiCrQ1Dmusw="
"niks3.numtide.com-1:DTx8wZduET09hRmMtKdQDxNNthLQETkc/yaX7M4qK0g="
];
};

Expand All @@ -22,6 +24,7 @@
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs-terraform.url = "github:stackbuilders/nixpkgs-terraform";
flake-parts.url = "github:hercules-ci/flake-parts";
llm-agents.url = "github:numtide/llm-agents.nix";
};

outputs = inputs @ { flake-parts, ... }:
Expand All @@ -44,6 +47,7 @@
golang = (import inputs.nixpkgs-golang { inherit system; }).go_1_26;
stable = import inputs.nixpkgs-stable { inherit system; };
terraform = inputs.nixpkgs-terraform.packages.${system}."terraform-1.5.7";
llms = inputs.llm-agents.packages.${system};

# Add Darwin packages here.
darwin-pkgs =
Expand Down Expand Up @@ -131,6 +135,7 @@
wget
;
inherit (stable) bitwarden-cli;
inherit (llms) claude-code coderabbit-cli;
go = golang;
helm = pkgs.kubernetes-helm;
jsonnet = pkgs.go-jsonnet;
Expand Down
Loading