From 9ec44c84e5d289741dc952668f586959e0350691 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 21 Feb 2024 03:25:13 +0300 Subject: [PATCH] Bootstrap : Remove flatpak as it is now a systemd service. --- .config/bash/module/Bootstrap.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.config/bash/module/Bootstrap.sh b/.config/bash/module/Bootstrap.sh index 6e076c1..c15646a 100644 --- a/.config/bash/module/Bootstrap.sh +++ b/.config/bash/module/Bootstrap.sh @@ -27,22 +27,6 @@ trim_trailing_whitespace = true " > .editorconfig } -# Setup all the flatpak apps on the machine. -function bootstrap_flatpak() { - # Add Flathub repo. - flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo - - # Reinstall apps. - local IFS=$'\n' - local targets="$(cat ~/.config/linux/Flatpak.txt | cut -f2)" - - process() { - flatpak install -y --system "${target}" - } - - _iterate_targets process ${targets[@]} -} - # Install nixos to specified drive. To be run from Live ISO. # Usage: bootstrap_nixos [HOST] function bootstrap_nixos() {