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

@@ -18,7 +18,7 @@
pkgs = import nixpkgs { inherit system; };
in
{
default = pkgs.mkShell { buildInputs = with pkgs; [ nixfmt-rfc-style ]; };
default = pkgs.mkShell { buildInputs = with pkgs; [ nixfmt ]; };
}
);
};