scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 586e2843159ee07537af583eb4201248abe9f16c
parent 58b21284616b72f1049103632b8d3a7112da5c05
Author: Andrew Laack <andrew@laack.co>
Date:   Thu, 19 Feb 2026 16:21:39 -0600

Updated installation instructions to setup docker

Diffstat:
Minstallers/arch-private-installation.sh | 2+-
Minstallers/arch-public-installation.sh | 12+++++++++++-
2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/installers/arch-private-installation.sh b/installers/arch-private-installation.sh @@ -15,7 +15,7 @@ echo "max-cache-ttl 288000">> ~/.gnupg/gpg-agent.conf git config --global user.email "andrew@laack.co" git config --global user.name "Andrew Laack" git config --global credential.helper cache -git config --global credential.helper 'cache --timeout=30000' +git config --global credential.helper 'cache --timeout=300000' cp ~/gitRepos/keys/ssh/id_ed25519* ~/.ssh/ chmod 600 ~/.ssh/id_ed25519* diff --git a/installers/arch-public-installation.sh b/installers/arch-public-installation.sh @@ -1,7 +1,7 @@ #!/bin/bash # Full arch installer (publicly accessible resources only) -sudo pacman -S git gcc make xorg-server libxft libxinerama freetype2 pkgconf ttf-fira-code zoxide fzf openssh less arandr dmenu pass pass-otp xclip newsboat xorg-xsetroot base-devel i3lock pandoc zathura entr ripgrep wget jq man-db btop tmux rsync cronie mpv +sudo pacman -S git gcc make xorg-server libxft libxinerama freetype2 pkgconf ttf-fira-code zoxide fzf openssh less arandr dmenu pass pass-otp xclip newsboat xorg-xsetroot base-devel i3lock pandoc zathura entr ripgrep wget jq man-db btop tmux rsync cronie mpv docker mkdir gitRepos cd gitRepos @@ -50,4 +50,14 @@ sudo systemctl start sshd sudo systemctl enable cronie sudo systemctl start cronie +# TODO: Should I use docker or podman / some other OCI image thing? +sudo systemctl enable docker +sudo systemctl start docker + +# DOCKER +sudo groupadd docker +sudo usermod -aG docker $USER +echo "Docker configured to run as your current user. Log out for this to be realized." + +# DONE echo "Time to open neovim and run :PackerSync a thousand times!"