fix(nix): use correct toolchain for rustfmt

This commit is contained in:
lveneris
2026-07-22 23:53:35 +00:00
committed by Ellis Git
parent b144b18aef
commit aa612baef3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
{
# basic nix shell containing all things necessary to build continuwuity in all flavors manually (on x86_64-linux)
devShells.default =
((inputs.crane.mkLib pkgs).overrideToolchain (pkgs: self'.packages.stable-toolchain)).devShell
((inputs.crane.mkLib pkgs).overrideToolchain (pkgs: self'.packages.dev-toolchain)).devShell
{
packages = [
self'.packages.rocksdb
+1 -1
View File
@@ -27,9 +27,9 @@
inherit stable-toolchain;
dev-toolchain = fnx.combine [
stable-toolchain
# use the nightly rustfmt because we use nightly features
fnx.complete.rustfmt
stable-toolchain
];
};
};