replace nixfmt-rfc-style with equivalent nixfmt

This commit is contained in:
Noah Masur
2026-01-11 16:38:11 -05:00
parent d9fbdf7bfe
commit 117fd8a06e
5 changed files with 5 additions and 5 deletions

View File

@@ -100,7 +100,7 @@
lua.command = "${pkgs.stylua}/bin/stylua";
black.command = "${pkgs.black}/bin/black";
fish_indent.command = "${pkgs.fish}/bin/fish_indent";
nixfmt.command = "${pkgs.nixfmt-rfc-style}/bin/nixfmt";
nixfmt.command = "${pkgs.nixfmt}/bin/nixfmt";
rustfmt.command = "${pkgs.rustfmt}/bin/rustfmt";
shfmt = {
command = "${pkgs.shfmt}/bin/shfmt";

View File

@@ -5,7 +5,7 @@ pkgs.mkShell {
buildInputs = with pkgs; [
git
stylua
nixfmt-rfc-style
nixfmt
shfmt
shellcheck
];