Skip to content

Commit fbbeaf9

Browse files
committed
chore: update nixpkgs
1 parent 0db1ed4 commit fbbeaf9

File tree

4 files changed

+30
-37
lines changed

4 files changed

+30
-37
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,13 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v5
3939

40-
- name: Install Nix
41-
uses: cachix/install-nix-action@v31
40+
- name: Install Determinate Nix
41+
uses: DeterminateSystems/determinate-nix-action@v3
42+
with:
43+
extra-conf: lazy-trees = true
44+
45+
- name: Set up FlakeHub Cache
46+
uses: DeterminateSystems/flakehub-cache-action@v2
4247

4348
- name: Install Rust (${{ matrix.toolchain.name }})
4449
uses: actions-rust-lang/[email protected]

.github/workflows/coverage.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v5
2020

21-
- name: Install Nix
22-
uses: cachix/install-nix-action@v31
21+
- name: Install Determinate Nix
22+
uses: DeterminateSystems/determinate-nix-action@v3
23+
with:
24+
extra-conf: lazy-trees = true
25+
26+
- name: Set up FlakeHub Cache
27+
uses: DeterminateSystems/flakehub-cache-action@v2
2328

2429
- name: Install Rust
2530
uses: actions-rust-lang/[email protected]

flake.lock

Lines changed: 14 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
inputs = {
3-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
4-
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
3+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
54
flake-parts.url = "github:hercules-ci/flake-parts";
65
x52 = {
76
url = "github:x52dev/nix";
@@ -25,14 +24,12 @@
2524

2625
packages = [
2726
config.formatter
28-
inputs'.nixpkgs-unstable.legacyPackages.cargo-shear
27+
pkgs.cargo-shear
2928
pkgs.fd
3029
pkgs.just
3130
pkgs.nodePackages.prettier
3231
pkgs.taplo
3332
] ++ lib.optional pkgs.stdenv.isDarwin [
34-
pkgs.pkgsBuildHost.darwin.apple_sdk.frameworks.CoreFoundation
35-
pkgs.pkgsBuildHost.darwin.apple_sdk.frameworks.Security
3633
pkgs.pkgsBuildHost.libiconv
3734
];
3835

0 commit comments

Comments
 (0)