feat(nix): migrate MacOS settings to nix-darwin

This commit is contained in:
Stefan Imhoff
2024-07-31 16:45:53 +02:00
parent c5be8e73b6
commit a635371714
13 changed files with 168 additions and 209 deletions

36
scripts/init.sh Executable file
View File

@@ -0,0 +1,36 @@
#!/bin/sh
echo "Installing asdf plugins and versions"
sudo -v
# Neovim
echo "Installing Neovim"
source ./neovim.sh
# Node.js
echo "Installing Node.js"
source ./nodejs.sh
# Deno
echo "Installing Deno"
source ./deno.sh
# Python
echo "Installing Python"
source ./python.sh
# Lua
echo "Installing Lua"
source ./lua.sh
# Rust
echo "Installing Rust"
source ./rust.sh
# Ruby
echo "Installing Ruby"
source ./ruby.sh
# Golang
echo "Installing Go"
source ./golang.sh