feat: ubuntu support

This commit is contained in:
Tine 2024-02-01 08:32:07 +01:00
parent 91960cfc78
commit 588288aaad
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw

View file

@ -2,24 +2,35 @@
REPO_DIR=$(dirname $(readlink -f $0)) REPO_DIR=$(dirname $(readlink -f $0))
HOME_DIR=${HOME} HOME_DIR=${HOME}
OS_RELEASE=$(cat /etc/os-release | grep -E "^ID=" | cut -d= -f2)
echo_header() {
bold=$(tput bold)
normal=$(tput sgr0)
red=$(tput setaf 1)
echo "${bold}${red}$1${normal}"
}
workspace_link() { workspace_link() {
mkdir -p $(dirname $HOME_DIR/$2) mkdir -p $(dirname $HOME_DIR/$2)
ln -s $REPO_DIR/$1 $HOME_DIR/$2 || true ln -s $REPO_DIR/$1 $HOME_DIR/$2 || true
} }
# On host we only install minimal dependencies. if [ "$OS_RELEASE" = "fedora" ]; then
# Mostly just GUI applications. # We treat fedora install as gui. Think PC, Laptop etc.
echo "==[host] Installing rpm-os tree packages" echo_header "==[host] Detected Fedora"
rpm-ostree install --idempotent --apply-live --allow-inactive -y \ # On host we only install minimal dependencies.
# Mostly just GUI applications.
echo_header "==[host] Installing rpm-os tree packages"
rpm-ostree install --idempotent --apply-live --allow-inactive -y \
git git-lfs \ git git-lfs \
kitty zsh \ kitty zsh \
podman-docker \ podman-docker \
gphoto2 v4l2loopback ffmpeg gphoto2 v4l2loopback ffmpeg
echo "==[host] Installing flatpaks" echo_header "==[host] Installing flatpaks"
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install -y --user \ flatpak install -y --user \
com.bitwarden.desktop \ com.bitwarden.desktop \
md.obsidian.Obsidian \ md.obsidian.Obsidian \
org.mozilla.firefox \ org.mozilla.firefox \
@ -27,30 +38,39 @@ flatpak install -y --user \
org.gnome.Builder \ org.gnome.Builder \
com.vscodium.codium com.vscodium.codium
echo "==[host] Installing Nix" echo_header "==[host] Installing fonts"
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install HOME_FONTS_DIR="${HOME_DIR}/.local/share/fonts"
mkdir -p ${HOME_FONTS_DIR}
rm -rf ${HOME_FONTS_DIR}/dotfiles-fonts
git clone --depth 1 git@github.com:mentos1386/dotfiles-fonts.git ${HOME_FONTS_DIR}/dotfiles-fonts
fc-cache
elif [ "$OS_RELEASE" = "ubuntu" ]; then
# We treat ubuntu install as non gui. Think WSL, VM etc.
echo_header "==[host] Detected Ubuntu"
sudo apt update
sudo apt install -y \
git git-lfs zsh
fi
echo "==[host] Installing Home Manager" echo_header "==[host] Installing Nix"
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nix-channel --add https://nixos.org/channels/nixpkgs-unstable
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
nix-channel --update nix-channel --update
nix-shell '<home-manager>' -A install echo_header "==[host] Installing Home Manager"
workspace_link nix/home.nix .config/home-manager/home.nix workspace_link nix/home.nix .config/home-manager/home.nix
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
echo "==[host] Installing Home Manager packages" echo_header "==[host] Installing Home Manager packages"
home-manager switch home-manager switch
echo "==[host] Use zsh as default shell" echo_header "==[host] Use zsh as default shell"
sudo chsh $USER --shell=/bin/zsh sudo chsh $USER --shell=/bin/zsh
echo "==[host] Plug for neovim" echo_header "==[host] Plug for neovim"
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
nvim --headless +'PlugInstall --sync' +qa
echo "==[host] Installing fonts" nvim --headless +UpdateRemotePlugins +qa
HOME_FONTS_DIR="${HOME_DIR}/.local/share/fonts"
mkdir -p ${HOME_FONTS_DIR}
rm -rf ${HOME_FONTS_DIR}/dotfiles-fonts
git clone --depth 1 git@github.com:mentos1386/dotfiles-fonts.git ${HOME_FONTS_DIR}/dotfiles-fonts
fc-cache