From 83b7458e9feb1df6ce20cc9e3de3c63b5a0fef3f Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 28 Mar 2025 12:17:16 +0100 Subject: [PATCH] treefmt add rustfmt --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index 2addf20..a60e11e 100644 --- a/flake.nix +++ b/flake.nix @@ -37,6 +37,7 @@ runtimeInputs = with pkgs; [ nixfmt-rfc-style nodePackages.prettier + rustfmt ]; settings = { tree-root-file = ".git/index"; @@ -45,6 +46,14 @@ command = "nixfmt"; includes = [ "*.nix" ]; }; + rustfmt = { + command = "rustfmt"; + options = [ + "--edition" + "2018" + ]; + includes = [ "*.rs" ]; + }; prettier = { command = "prettier"; options = [ "--write" ];