Compare commits

...

4 Commits

  1. 11
      nix-darwin/home.nix

@ -71,6 +71,7 @@
discord discord
gimp gimp
vscode vscode
gtkwave
# Utils # Utils
coreutils # *happy rms noises* coreutils # *happy rms noises*
@ -86,6 +87,7 @@
sshfs sshfs
libqalculate libqalculate
imagemagick imagemagick
llvm
# Simulators # Simulators
# ngspice # ngspice
@ -234,6 +236,15 @@
# User bin # User bin
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
# GHCup
export PATH="$PATH:$HOME/.ghcup/bin"
# Super hacky and fucking stupid way of doing things - stuff
export PATH="/usr/local/llvm/bin:$PATH"
export LDFLAGS="-L/usr/local/llvm/lib $LDFLAGS"
export CPPFLAGS="-I/usr/local/llvm/include $CPPFLAGS"
export DYLD_LIBRARY_PATH="/usr/local/llvm/lib:$DYLD_LIBRARY_PATH"
# Nix # Nix
if [ -e /etc/profile.d/nix.sh ]; then . /etc/profile.d/nix.sh; fi if [ -e /etc/profile.d/nix.sh ]; then . /etc/profile.d/nix.sh; fi

Loading…
Cancel
Save