fix(nix): merge duplicate home.packages definitions

Consolidate Neovim package and dependencies into a single
home.packages list to fix duplicate attribute error.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
0xWheatyz 2026-02-19 18:40:41 -05:00
parent 900094e45a
commit e318f42bf3
1 changed files with 3 additions and 5 deletions

View File

@ -15,21 +15,19 @@
};
config = lib.mkIf config.programs.neovim-kickstart.enable {
home.packages = [ self.packages.${pkgs.system}.default ];
home.file.".config/nvim" = {
source = self;
recursive = true;
};
# Optional: Install recommended dependencies
home.packages = with pkgs; [
# Install Neovim package and recommended dependencies
home.packages = [ self.packages.${pkgs.system}.default ] ++ (with pkgs; [
ripgrep
fd
gcc
gnumake
git
];
]);
};
};
in