When something goes wrong after an update, a config change, or a failed rebuild, Abora gives you several recovery layers to choose from. The lightest path isDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/AnimatedGTVR/abora-os/llms.txt
Use this file to discover all available pages before exploring further.
abora doctor and the ANIX rollback commands, which work from a running terminal. If the system still boots but is in a broken state, the interactive abora recovery menu consolidates all the common repair actions in one place. If the system does not boot at all, the live ISO recovery path lets you mount the installed root and rebuild or extract logs from outside the broken environment.
First Checks
Before reaching for a rollback, run the standard health sequence. These commands are non-destructive and give you a clear picture of where the problem is before you change anything.abora doctor checks for the presence of core Abora files (flake.nix, abora-local.nix, Abora update and theme tools, ANIX script, bootloader theme, Plymouth theme), validates the Flathub system remote, confirms the update channel, and runs anix doctor internally. anix status reports the active profile, generation, flake state, Git snapshot state, and TinyPM status. tinypm system shows the Abora, ANIX, and NixOS bridge status from the TinyPM side.
The abora recovery Menu
Running abora recovery without arguments opens an interactive menu that bundles the most common repair actions into numbered options.
1 — Roll back previous generation
Runs
anix rollback nix --now to switch the system back to the previous NixOS generation immediately.2 — Run support report
Runs
abora-support-report and collects diagnostic information into an archive you can attach when asking for help.3 — Repair Flathub remote
Re-adds the Flathub system remote with
flatpak remote-add --system --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo.4 — Rebuild current config
Runs
sudo nixos-rebuild switch --flake /etc/nixos#abora to rebuild and switch to the current configuration without changing anything else.5 — Run ANIX doctor
Runs
anix doctor, which checks flakes, Git state, system generations, ANIX config validity, and the desktop setting.6 — Run Abora doctor
Runs
abora-doctor, which verifies Abora-specific install assets — config files, update tool, theme sync, support report script, bootloader, and Plymouth theme.Direct Subcommands
Every menu option also has a direct subcommand for use in scripts or when you already know which action you need:Rolling Back
Quick rollback alias
The fastest one-liner for undoing the last rebuild is therollback alias available on installed Abora systems:
Roll back with ANIX
If you want to inspect generations before committing to a rollback, use ANIX directly:anix generations lists the recent system generations. anix rollback nix rolls back to the previous NixOS generation after a confirmation prompt. Add --now to skip the prompt:
Rebuild the current config directly
If the config file itself is good but the active system is in a bad state, rebuild and switch without touching the generation history:Test Before Switching
When you are not sure whether a config change will succeed, dry-build it and compare the package closure changes before applying anything to the live system:anix diff nix abora does a dry build and then computes the closure diff so you can see exactly which packages would be added, removed, or updated. anix test nix abora activates the new configuration for the current boot only — it does not become the default until you run anix switch.
Save a Snapshot Before Making Changes
Before any significant repair operation, save a local Git snapshot of/etc/nixos so you have a rollback point for the config itself — not just for the Nix generation:
sops-nix or agenix before proceeding. Snapshots stay local by default and are never pushed unless you explicitly enable it.
Repair App Sources
If app installs are failing or Flatpak is misbehaving, TinyPM has two quick repair commands:tinypm repair runs repair-focused doctor checks across the available package sources. tinypm sources shows the current status of native Nix, Flatpak, Snap, and other sources. If the issue is specifically the Flathub remote, use:
flatpak remote-add --system --if-not-exists.
Generate a Support Report
When you need to share diagnostics with the community or file a bug report, generate a support archive:Live ISO Recovery
If the system will not reach a login prompt at all, boot from the Abora ISO and use the live shell to access the installed root from the outside.Boot the Abora ISO
Download the latest Abora ISO from the releases page and boot from it on your hardware or in your VM. The installer will detect an existing Abora disk and warn you that the ISO is still attached — that warning is expected in this situation.
Choose the live shell
At the installer welcome screen, select the option to open a live shell rather than starting the install flow.
Mount the installed root partition
Identify your installed root partition and mount it:Replace
/dev/sdXn with your actual root partition (for example /dev/sda3 or /dev/nvme0n1p3). If your system uses a separate /boot partition, mount it too:Inspect /mnt/etc/nixos
With the installed root mounted, you can read and edit the NixOS configuration:Look for syntax errors, bad option values, or a missing
flake.nix. The most common cause of a non-booting system after a rebuild is a Nix evaluation error that prevents the bootloader or activation script from completing.