system changes

This commit is contained in:
Jacob Janzen 2024-12-27 20:38:48 -06:00
parent bc88a71ff7
commit 951664c453
2 changed files with 10 additions and 1 deletions

View file

@ -54,6 +54,14 @@ Load extra code.
initExtra = ''
#+end_src
Configure Homebrew =llvm=.
#+begin_src sh
export CC='/opt/homebrew/opt/llvm/bin/clang'
export CXX="$CC++"
export LDFLAGS="$LDFLAGS -L/opt/homebrew/opt/llvm/lib"
export CPPFLAGS="$CPPFLAGS -I/opt/homebrew/opt/llvm/include"
#+end_src
Create potential aliases and create the prompt.
#+begin_src sh
which lesspipe.sh &> /dev/null && export LESSOPEN="|lesspipe.sh %s"

View file

@ -30,9 +30,10 @@ Import a wallpaper to the path =~/.wallpaper=.
Add Homebrew to the path along with standard =bin= directories.
#+begin_src nix
home.sessionPath = [
"/opt/homebrew/bin"
"$HOME/.local/bin"
"/usr/local/bin"
"/opt/homebrew/bin"
"/opt/homebrew/opt/llvm/bin"
];
}
#+end_src