···6060- [Configuration](docs/Configuration.md) - Config file format, rules, and settings.
6161- [URI Scheme](docs/URI%20Scheme.md) - Custom `switchyard://` URLs for specifying browser preferences.
6262- [Prior Art](docs/Prior%20Art.md) - Similar tools that inspired Switchyard.
6363+6464+## Notes
6565+6666+### Flaktpak on NixOS: host browsers are not detected
6767+6868+On NixOS, browser desktop files live in `/run/current-system/sw/share/applications`, which is not visible inside Flatpak by default.
6969+7070+To expose them to Switchyard, add the path to the XDG application search path:
7171+7272+```bash
7373+flatpak override --user io.github.alyraffauf.Switchyard \
7474+ --filesystem=/run/current-system/sw/share:ro \
7575+ --env=XDG_DATA_DIRS=/app/share:/usr/share:/run/current-system/sw/share
7676+```