fixed nix-ld

This commit is contained in:
Bryan Ramos 2026-04-30 22:07:51 -04:00
parent 25d2c27935
commit 52ba79c38d
3 changed files with 8 additions and 25 deletions

View file

@ -66,6 +66,8 @@ in
};
};
programs.nix-ld.enable = true;
boot.loader = {
systemd-boot = {
enable = true;

View file

@ -12,7 +12,12 @@ in
defaultEditor = true;
vimAlias = true;
vimdiffAlias = true;
extraPackages = import ./pkgs.nix { inherit pkgs; };
extraPackages = with pkgs; [
lazygit
gcc
fzf
rg
];
};
home.file.".config/nvim" = {

View file

@ -1,24 +0,0 @@
{ pkgs, ... }:
let
# Essential LSPs for config files (project-specific LSPs go in devShells)
lsp = with pkgs; [
nixd
lua-language-server
marksman
taplo
];
lsp' = with pkgs.nodePackages; [
vscode-langservers-extracted # jsonls, html, cssls
bash-language-server
yaml-language-server
];
extraPackages = with pkgs; [
lazygit
gcc
];
in
extraPackages ++ lsp ++ lsp'