tabnine: switch config directory by system type
Alan Pearce alan@alanpearce.eu
Mon, 09 Dec 2019 16:40:22 +0100
1 files changed, 13 insertions(+), 4 deletions(-)
jump to
M user/modules/tabnine.nix → user/modules/tabnine.nix
@@ -3,8 +3,9 @@ with lib; let + inherit (pkgs) stdenv; cfg = config.programs.tabnine; - configFile = config: + lspConfigFile = config: pkgs.runCommand "TabNine.toml" { buildInputs = [ pkgs.remarshal ]; @@ -23,20 +24,28 @@ options.programs.tabnine = { enable = mkEnableOption "TabNine, Smart Compose for code."; + configDir = mkOption { + type = types.str; + default = if stdenv.isDarwin then "Library/Preferences/TabNine" else "${config.xdg.configHome}/TabNine"; + description = '' + Location of TabNine configuration directory relative to \$HOME + ''; + }; + lspConfig = mkOption { type = types.attrs; default = {}; description = '' LSP Server configuration written to - <filename>~/.config/TabNine/TabNine.toml</filename>. + <filename>\${configDir}/TabNine.toml</filename> </para><para> ''; }; }; config = mkIf cfg.enable { - xdg.configFile."TabNine/TabNine.toml" = { - source = configFile cfg.lspConfig; + home.file."${cfg.configDir}/TabNine.toml" = { + source = lspConfigFile cfg.lspConfig; }; }; }