fix: Use default nixfmt instead of nixfmt-rfc-style

This commit is contained in:
ulic-youthlic 2026-01-14 14:21:45 +08:00
parent 4ea5cbd9b7
commit 008c4f004e
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ {
buildEnv, buildEnv,
nixfmt-rfc-style, nixfmt,
idris2Packages, idris2Packages,
lua-language-server, lua-language-server,
bash-language-server, bash-language-server,
@ -42,7 +42,7 @@
buildEnv { buildEnv {
name = "editor-runtime"; name = "editor-runtime";
paths = [ paths = [
nixfmt-rfc-style nixfmt
idris2Packages.idris2Lsp idris2Packages.idris2Lsp
lua-language-server lua-language-server
bash-language-server bash-language-server

View file

@ -49,7 +49,7 @@
if exe ~= "" then if exe ~= "" then
return exe return exe
else else
return "${lib.getExe pkgs.nixfmt-rfc-style}" return "${lib.getExe pkgs.nixfmt}"
end end
end end
}) })