From 63d6ac46a31271d73799bc7d0f927c410684d65d Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sat, 3 Aug 2024 12:52:29 -0400 Subject: [PATCH] CLANG!!!! --- home-manager/nvim.nix | 4 ++++ nixos/shell.nix | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/home-manager/nvim.nix b/home-manager/nvim.nix index 6354a5a..357d0e4 100644 --- a/home-manager/nvim.nix +++ b/home-manager/nvim.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: { home.packages = with pkgs; [ + # Languages lua (python3.withPackages ( p: with p; [ @@ -8,11 +9,14 @@ gst-python ] )) + clang + clang-tools nodejs bun rustc go cargo + # Extensions ripgrep xclip fzf diff --git a/nixos/shell.nix b/nixos/shell.nix index c78a0e2..7e48166 100644 --- a/nixos/shell.nix +++ b/nixos/shell.nix @@ -3,5 +3,8 @@ environment.shells = with pkgs; [ zsh ]; programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; - programs.nix-ld.enable = true; + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ stdenv.cc.cc ]; + }; }