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
146 changes: 50 additions & 96 deletions flake.lock

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

9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-golang.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs-terraform.url = "github:stackbuilders/nixpkgs-terraform";
flake-parts.url = "github:hercules-ci/flake-parts";
};
Expand All @@ -41,7 +41,7 @@
let
# Pinned packages.
custom = import ./pkgs { inherit pkgs; };
golang = (import inputs.nixpkgs-golang { inherit system; }).go_1_22;
golang = (import inputs.nixpkgs-golang { inherit system; }).go_1_24;
stable = import inputs.nixpkgs-stable { inherit system; };
terraform = inputs.nixpkgs-terraform.packages.${system}."1.5.7";

Expand All @@ -67,9 +67,10 @@
packages =
{
# stackrox/stackrox
inherit (stable)
bats;
inherit
(pkgs)
bats
gettext# Needed for `envsubst`
gradle
jdk11
Expand Down Expand Up @@ -127,7 +128,7 @@
prometheus
wget
;
inherit (stable) bitwarden-cli;
inherit (pkgs) bitwarden-cli;
go = golang;
helm = pkgs.kubernetes-helm;
jsonnet = pkgs.go-jsonnet;
Expand Down
Loading