diff --git a/.chezmoiscripts/run_once_after_00-installer.sh.tmpl b/.chezmoiscripts/run_once_after_00-installer.sh.tmpl index c1cd170..cc0652e 100644 --- a/.chezmoiscripts/run_once_after_00-installer.sh.tmpl +++ b/.chezmoiscripts/run_once_after_00-installer.sh.tmpl @@ -15,11 +15,13 @@ sudo dnf -y install fzf sudo dnf -y install aspell ## Install 1password +### https://support.1password.com/install-linux/ sudo rpm --import https://downloads.1password.com/linux/keys/1password.asc sudo sh -c 'echo -e "[1password]\nname=1Password Stable Channel\nbaseurl=https://downloads.1password.com/linux/rpm/stable/\$basearch\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=\"https://downloads.1password.com/linux/keys/1password.asc\"" > /etc/yum.repos.d/1password.repo' sudo dnf -y install 1password ## Install Brave-browser +### https://brave.com/linux/ sudo dnf -y install dnf-plugins-core sudo dnf config-manager --add-repo https://brave-browser-rpm-release.s3.brave.com/brave-browser.repo sudo rpm --import https://brave-browser-rpm-release.s3.brave.com/brave-core.asc @@ -33,6 +35,14 @@ sudo dnf -y install wezterm sudo dnf -y install fcitx5 sudo dnf -y install fcitx5-autostart sudo dnf -y install fcitx5-mozc + +## Docker +### https://docs.docker.com/engine/install/fedora/ +# Already installed when install brave-browser +# sudo dnf -y install dnf-plugins-core +sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo +sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin + {{- end -}} {{- end }} diff --git a/.chezmoiscripts/run_once_after_01-chores.sh.tmpl b/.chezmoiscripts/run_once_after_01-chores.sh.tmpl index 3b4d850..5a95299 100644 --- a/.chezmoiscripts/run_once_after_01-chores.sh.tmpl +++ b/.chezmoiscripts/run_once_after_01-chores.sh.tmpl @@ -20,5 +20,10 @@ fc-cache -v # if [ "$CI" != true ]; then # sudo systemctl start xremap.service # fi + +if [ "CI" != true ]; then + sudo systemctl start docker +fi + {{ end -}} {{ end -}}