From 35ae0ecef2fe2779278cbf1cd2307c7577e9a976 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Sun, 31 Jul 2022 23:03:09 +0200 Subject: [PATCH] format --- rust/flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust/flake.nix b/rust/flake.nix index c192acf..8fbfa82 100644 --- a/rust/flake.nix +++ b/rust/flake.nix @@ -27,7 +27,8 @@ deps = with pkgs; [ openssl pkgconfig ]; rustTools = with pkgs; - [ cargo-audit cargo-deny cargo-cross rust-analyzer ] ++ optionals isLinux (with pkgs; [ cargo-watch ]); + [ cargo-audit cargo-deny cargo-cross rust-analyzer ] + ++ optionals isLinux (with pkgs; [ cargo-watch ]); in { packages.default = rust;