Skip to content

Instantly share code, notes, and snippets.

@jhilker98
Last active July 6, 2022 01:50
Show Gist options
  • Save jhilker98/8059453f09343f269d5ca92705a56cc2 to your computer and use it in GitHub Desktop.
Save jhilker98/8059453f09343f269d5ca92705a56cc2 to your computer and use it in GitHub Desktop.
endeavourOS install scripts
echo "Installing global packages now..."
sudo pacman -Syu python-setuptools python-pip dunst zsh geoclue rofimoji rofi-pass rofi-calc emacs
yay -S qtile-extras-git
echo "Changing shell to zsh"
chsh -s /bin/zsh
printf "Installing Nix and Home Manager\n"
sh <(curl -L https://nixos.org/nix/install) --daemon
echo 'export NIX_PATH=$HOME/.nix-defexpr/channels:/nix/var/nix/profiles/per-user/root/channels${NIX_PATH:+:$NIX_PATH}' >> ~/.profile && source ~/.profile
if [[ ! -d "$HOME/.config/doom" ]]; then
mkdir -p "$HOME/.config/doom"
fi
dunstify "Reboot now."
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager && nix-channel --update
nix-shell '<home-manager>' -A install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment