diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 612e473d..ce8f6232 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -36,3 +36,7 @@ [Libadoxon](https://github.com/Libadoxon): - `toggleterm` open map now also works when in terminal mode + +[jtliang24](https://github.com/jtliang24): + +- Updated nix language plugin to use pkgs.nixfmt instead of pkgs.nixfmt-rfc-style diff --git a/modules/plugins/languages/nix.nix b/modules/plugins/languages/nix.nix index f03806f9..0dc5b357 100644 --- a/modules/plugins/languages/nix.nix +++ b/modules/plugins/languages/nix.nix @@ -39,7 +39,7 @@ }; nixfmt = { - command = getExe pkgs.nixfmt-rfc-style; + command = getExe pkgs.nixfmt; }; };