Files
dotfiles/bin/update
2019-11-18 10:13:03 -05:00

14 lines
200 B
Bash
Executable File

#!/bin/sh
if command -v brew &> /dev/null; then
brew update
brew upgrade
brew cask upgrade
fi
if command -v nix &> /dev/null; then
nix-channel --update
nix-env -u
home-manager switch
fi