From 7190ee4b87b854480512f8180bea6f9d98b5ed45 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 5 Aug 2023 21:33:31 +0300 Subject: [PATCH] fix: lua syntax mismatch for global formatting and nix language the nix expression for formatter configuration were missing two curly closing brackets --- modules/languages/nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/languages/nix.nix b/modules/languages/nix.nix index 26f9285..5ee616c 100644 --- a/modules/languages/nix.nix +++ b/modules/languages/nix.nix @@ -56,9 +56,9 @@ with builtins; let command = {"${cfg.format.package}/bin/nixpkgs-fmt"}, }, ''} - ''} }, - }; + }, + ''} } ''; };