Skip to content

Commit 6ea7235

Browse files
committed
flake.nix: finish 25.11.
1 parent 9c78e3d commit 6ea7235

File tree

2 files changed

+24
-45
lines changed

2 files changed

+24
-45
lines changed

flake.lock

Lines changed: 22 additions & 38 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 & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
inputs = {
55
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
6-
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
76
fenix = {
87
url = "github:nix-community/fenix";
98
inputs.nixpkgs.follows = "nixpkgs";
@@ -13,7 +12,6 @@
1312
outputs =
1413
{
1514
nixpkgs,
16-
nixpkgs-unstable,
1715
fenix,
1816
...
1917
}:
@@ -54,13 +52,12 @@
5452
}
5553
);
5654

57-
formatter = eachSystem (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style);
55+
formatter = eachSystem (system: nixpkgs.legacyPackages.${system}.nixfmt);
5856

5957
devShells = eachSystem (
6058
system:
6159
let
6260
pkgs = nixpkgs.legacyPackages.${system};
63-
unstablePkgs = nixpkgs-unstable.legacyPackages.${system};
6461
fenixPkgs = fenix.packages.${system};
6562

6663
mkShell =
@@ -85,10 +82,8 @@
8582
]
8683
))
8784
]
88-
++ (with unstablePkgs; [
89-
re2c
90-
])
9185
++ (with pkgs; [
86+
re2c
9287
rust-analyzer
9388
clippy
9489
cargo-fuzz

0 commit comments

Comments
 (0)