CLANG!!!!

This commit is contained in:
Benjamin Palko 2024-08-03 12:52:29 -04:00
parent f53b310f52
commit 63d6ac46a3
2 changed files with 8 additions and 1 deletions

View file

@ -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

View file

@ -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 ];
};
}