CLANG!!!!
This commit is contained in:
parent
f53b310f52
commit
63d6ac46a3
2 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue