Skip to content

Commit 0191bb3

Browse files
committed
mios.toml [desktop].flatpaks: use gnome-nightly Nautilus.Devel + fedora Epiphany
Operator-flagged on fresh 2026-05-10 install: ╰─❯ nautilus error: app/org.gnome.Nautilus.Devel/x86_64/master not installed Root cause: mios.git's runtime /usr/share/mios/mios.toml still had the OLD flathub-only flatpak IDs. The bash overlay's [desktop].flatpaks install pass reads THIS file (not the mios-bootstrap one), so even with the bash loop now able to parse `<remote>:<appid>` prefixes, the toml entries lacked prefixes -- everything installed from flathub including the EOL org.gnome.Nautilus. Fix: mirror the mios-bootstrap/mios.toml [desktop].flatpaks list into mios.git so the runtime resolver sees the current entries: gnome-nightly:org.gnome.Nautilus.Devel (modern 50.x, libadwaita rounded chrome) fedora:org.gnome.Epiphany (50.x current) app.devsuite.Ptyxis (correct id post-rename) com.github.tchx84.Flatseal (flathub stable) com.mattjakeman.ExtensionManager (flathub stable) com.vscodium.codium (flathub stable) Plus org.gtk.Gtk3theme.adw-gtk3{,-dark} (libadwaita theme bridge) After this commit lands + operator runs `mios update`, the next overlay pass installs Nautilus.Devel from gnome-nightly and the `nautilus` shim resolves correctly.
1 parent 0e2b24c commit 0191bb3

1 file changed

Lines changed: 14 additions & 11 deletions

File tree

usr/share/mios/mios.toml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -429,17 +429,20 @@ color_scheme = "prefer-dark" # libadwaita / dconf color-scheme
429429
# Nautilus is the GNOME file manager (`Files`); shipping it here
430430
# means `flatpak run org.gnome.Nautilus` works on every host.
431431
flatpaks = [
432-
"org.gnome.Epiphany",
433-
"org.gnome.Nautilus",
434-
"com.github.tchx84.Flatseal",
435-
# NOTE: org.gnome.Software was previously listed here but Flathub
436-
# returns "Nothing matches org.gnome.Software in remote flathub" as
437-
# of 2026-05 -- it appears to have been delisted or moved to a
438-
# different ID. Operators who want a Flatpak app-browser UI can add
439-
# one back via mios.html (e.g. "io.github.flattool.Warehouse" /
440-
# "com.github.tchx84.Flatseal" already covers permissions).
441-
"com.mattjakeman.ExtensionManager",
442-
"com.vscodium.codium",
432+
# GTK theme extensions so flatpak apps honor host dark-Adwaita.
433+
"org.gtk.Gtk3theme.adw-gtk3-dark",
434+
"org.gtk.Gtk3theme.adw-gtk3",
435+
# Default session apps.
436+
"app.devsuite.Ptyxis", # terminal (renamed from org.gnome.Ptyxis 2026-Q1)
437+
# Nautilus modern: ONLY available as org.gnome.Nautilus.Devel on the
438+
# gnome-nightly remote. Flathub's org.gnome.Nautilus is END-OF-LIFE
439+
# (pinned to GNOME 3.28 runtime); Fedora flatpak registry doesn't
440+
# carry Nautilus.
441+
"gnome-nightly:org.gnome.Nautilus.Devel",
442+
"fedora:org.gnome.Epiphany", # 50.x current (vs. potentially-stale Flathub)
443+
"com.github.tchx84.Flatseal", # Flatpak permissions UI
444+
"com.mattjakeman.ExtensionManager", # GNOME shell extensions
445+
"com.vscodium.codium", # VSCodium IDE
443446
]
444447

445448
# ----------------------------------------------------------------------------

0 commit comments

Comments
 (0)