Last active
July 6, 2022 01:50
-
-
Save jhilker98/8059453f09343f269d5ca92705a56cc2 to your computer and use it in GitHub Desktop.
endeavourOS install scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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