ci: use nightly rustfmt

we were using this before, but it broke when refactoring the flake out into separate files
This commit is contained in:
Matthias Ahouansou 2024-06-16 17:28:05 +01:00
parent 6398136163
commit fd19dda5cb
No known key found for this signature in database
3 changed files with 13 additions and 10 deletions

View file

@ -23,7 +23,7 @@ mkShell {
};
# Development tools
nativeBuildInputs = default.nativeBuildInputs ++ [
nativeBuildInputs = [
# Always use nightly rustfmt because most of its options are unstable
#
# This needs to come before `toolchain` in this list, otherwise
@ -57,5 +57,5 @@ mkShell {
# Useful for editing the book locally
mdbook
];
] ++ default.nativeBuildInputs ;
}