Replaced nixd with nil

This commit is contained in:
Alejandro Angulo 2024-03-15 11:21:24 -07:00
parent 0980448908
commit f75574fcc9
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6

View file

@ -19,7 +19,7 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [fzf fd nixd]; environment.systemPackages = with pkgs; [fzf fd nil];
aa.home.dataFile = { aa.home.dataFile = {
${cfg.tmuxThemePath}.source = ./tmux_theme; ${cfg.tmuxThemePath}.source = ./tmux_theme;
@ -152,9 +152,9 @@ in {
"coc.preferences.formatOnSave" = true; "coc.preferences.formatOnSave" = true;
"python.formatting.provider" = "black"; "python.formatting.provider" = "black";
"languageserver" = { "languageserver" = {
"nixd" = { "nix" = {
"command" = "nixd"; "command" = "nil";
"rootPatterns" = [".nixd.json"]; "rootPatterns" = ["flake.nix"];
"filetypes" = ["nix"]; "filetypes" = ["nix"];
}; };
}; };