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 {
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"];
};
};