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() {