From f75574fcc9416dbcdf73925e1c81b72333def123 Mon Sep 17 00:00:00 2001 From: Alejandro Angulo Date: Fri, 15 Mar 2024 11:21:24 -0700 Subject: [PATCH] Replaced nixd with nil --- modules/nixos/apps/neovim/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/nixos/apps/neovim/default.nix b/modules/nixos/apps/neovim/default.nix index 8c7c75a..373795a 100644 --- a/modules/nixos/apps/neovim/default.nix +++ b/modules/nixos/apps/neovim/default.nix @@ -19,7 +19,7 @@ in { }; config = mkIf cfg.enable { - environment.systemPackages = with pkgs; [fzf fd nixd]; + environment.systemPackages = with pkgs; [fzf fd nil]; aa.home.dataFile = { ${cfg.tmuxThemePath}.source = ./tmux_theme; @@ -152,9 +152,9 @@ in { "coc.preferences.formatOnSave" = true; "python.formatting.provider" = "black"; "languageserver" = { - "nixd" = { - "command" = "nixd"; - "rootPatterns" = [".nixd.json"]; + "nix" = { + "command" = "nil"; + "rootPatterns" = ["flake.nix"]; "filetypes" = ["nix"]; }; };