reformat all nix code
1 file changed, 15 insertions(+), 9 deletions(-)
changed files
M user/settings/development/rust.nix → user/settings/development/rust.nix
@@ -1,7 +1,9 @@ -{ config -, pkgs -, ... -}: { +{ + config, + pkgs, + ... +}: +{ home.packages = with pkgs; [ cargo cargo-edit@@ -10,9 +12,13 @@ rustfmt rust-analyzer clippy ]; - programs.emacs.extraPackages = epkgs: (with epkgs; [ - (treesit-grammars.with-grammars (grammars: with grammars; [ - tree-sitter-rust - ])) - ]); + programs.emacs.extraPackages = + epkgs: + (with epkgs; [ + (treesit-grammars.with-grammars ( + grammars: with grammars; [ + tree-sitter-rust + ] + )) + ]); }