From 2973ce1a6f8053bf0debfdfa9531b0caa356f2d1 Mon Sep 17 00:00:00 2001 From: jtliang24 Date: Wed, 7 Jan 2026 22:33:48 -0500 Subject: [PATCH 1/2] Update nixfmt command to use pkgs.nixfmt --- modules/plugins/languages/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; }; From 28a9fd25f70311ed36dbd5838ede1b237ee0044e Mon Sep 17 00:00:00 2001 From: jtliang24 Date: Wed, 7 Jan 2026 22:44:34 -0500 Subject: [PATCH 2/2] Update release notes for this change --- docs/manual/release-notes/rl-0.9.md | 4 ++++ 1 file changed, 4 insertions(+) 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