Reshuffling stuff

This commit is contained in:
2026-03-18 18:41:16 +00:00
parent 17076e1b25
commit 5c634c439e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -61,10 +61,10 @@ let
fi
desired_apps=(
${lib.concatStringsSep "\n" (map (a: ''"${a}"'') flatpakApps)}
${lib.concatStringsSep " " (map (a: ''"${a}"'') flatpakApps)}
)
for app in "${desired_apps[@]}"; do
for app in $desired_apps; do
if ! flatpak info --system "$app" >/dev/null 2>&1; then
flatpak install --system -y --noninteractive flathub "$app"
fi