A reproducible development configuration.
- Git and Curl
- Nix - download and installation instructions can be found here.
# Replace apt with your OS's package manager
sudo apt install git curl
# Enable nix flakes
mkdir -p ~/.config/nix
echo "experimental-features = nix-command flakes" | tee ~/.config/nix/nix.conf
# Clone this repo to '~/.config/home-manager'
git clone git@github.com:brahste/home-config.git ~/.config/home-manager
# Install home-manager
nix run ~/.config/home-manager#homeConfigurations.braden.activationPackage
Some additional steps are required.
- Install the Hack Nerd Font and install it
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/Hack.zip
unzip Hack.zip -d ~/.local/share/fonts
fc-cache
- Change your default shell to zsh.
echo $(which zsh) | sudo tee -a /etc/shells
chsh -s $(which zsh)
- Install visual studio code extensions managed in app-config/vscode/extensions.json.
hm$ ./scripts/install-vscode-extensions.sh