reformat all nix code
1 file changed, 8 insertions(+), 8 deletions(-)
changed files
M user/modules/tabnine.nix → user/modules/tabnine.nix
@@ -1,9 +1,11 @@ -{ config -, lib -, pkgs -, ... +{ + config, + lib, + pkgs, + ... }: -with lib; let +with lib; +let inherit (pkgs) stdenv; tomlFormat = pkgs.formats.toml { }; cfg = config.programs.tabnine;@@ -15,9 +17,7 @@ configDir = mkOption { type = types.str; default = - if stdenv.isDarwin - then "Library/Preferences/TabNine" - else "${config.xdg.configHome}/TabNine"; + if stdenv.isDarwin then "Library/Preferences/TabNine" else "${config.xdg.configHome}/TabNine"; description = '' Location of TabNine configuration directory relative to \$HOME '';