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, ... }: { config, pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
# Languages
lua lua
(python3.withPackages ( (python3.withPackages (
p: with p; [ p: with p; [
@ -8,11 +9,14 @@
gst-python gst-python
] ]
)) ))
clang
clang-tools
nodejs nodejs
bun bun
rustc rustc
go go
cargo cargo
# Extensions
ripgrep ripgrep
xclip xclip
fzf fzf

View file

@ -3,5 +3,8 @@
environment.shells = with pkgs; [ zsh ]; environment.shells = with pkgs; [ zsh ];
programs.zsh.enable = true; programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.nix-ld.enable = true; programs.nix-ld = {
enable = true;
libraries = with pkgs; [ stdenv.cc.cc ];
};
} }