all repos — nixfiles @ 6e34ca8bda9cddcce1ea73f73b883a3ec8358678

System and user configuration, managed by nix and home-manager

Reformat nix files

Alan Pearce
commit

6e34ca8bda9cddcce1ea73f73b883a3ec8358678

parent

bf435de812836511a9ba580a66acf3cd235cd15c

1 file changed, 12 insertions(+), 12 deletions(-)

changed files
M user/modules/tabnine.nixuser/modules/tabnine.nix
@@ -6,18 +6,18 @@ let
inherit (pkgs) stdenv; cfg = config.programs.tabnine; lspConfigFile = config: - pkgs.runCommand "TabNine.toml" - { - buildInputs = [ pkgs.remarshal ]; - preferLocalBuild = true; - allowSubstitutes = false; - } - '' - remarshal -if json -of toml \ - < ${pkgs.writeText "config.json" (builtins.toJSON cfg.lspConfig)} \ - | sed -e 's/^\["\(.*\)"\]/[\1]/' \ - > $out - ''; + pkgs.runCommand "TabNine.toml" + { + buildInputs = [ pkgs.remarshal ]; + preferLocalBuild = true; + allowSubstitutes = false; + } + '' + remarshal -if json -of toml \ + < ${pkgs.writeText "config.json" (builtins.toJSON cfg.lspConfig)} \ + | sed -e 's/^\["\(.*\)"\]/[\1]/' \ + > $out + ''; in {