Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
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
25 changes: 10 additions & 15 deletions flake.lock

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

5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
description = "Build a cargo project without extra checks";

inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
nixpkgs.url = "nixpkgs/nixos-25.05";
Copy link
Collaborator

Choose a reason for hiding this comment

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

Any reason to not try and just keep this at nixos-unstable if we still plan on moving this all into the monorepo at some point?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

yeah, release channels get only security updates but no major upgrades (nothing semver breaking, more or less), unstable is likelier to cause breakage more than once per 6 months, which is what we'd expect with the release schedule

crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
};
Expand All @@ -15,7 +14,7 @@
let
pkgs = nixpkgs.legacyPackages.${system};

craneLib = crane.lib.${system};
craneLib = crane.mkLib pkgs;

nginxWithStream = pkgs.nginxMainline.overrideAttrs (oldAttrs: {
configureFlags = oldAttrs.configureFlags ++ [
Expand Down
Loading