| 1 |
# Put Alloy's flatpak overrides where flatpak actually reads them. |
| 2 |
# |
| 3 |
# `C` copies the source only when the target does not exist, so this seeds a |
| 4 |
# fresh machine and then never touches it again. A user who edits their own |
| 5 |
# /var/lib/flatpak/overrides/global keeps their edit across every boot and |
| 6 |
# every image update, which is the right ownership: /var is theirs. |
| 7 |
# |
| 8 |
# The consequence worth knowing: changing the shipped file does NOT update a |
| 9 |
# machine that already has one. That is the cost of letting the user own it. |
| 10 |
# An image whose overrides changed says so in its release note. |
| 11 |
# |
| 12 |
#Type Path Mode User Group Age Argument |
| 13 |
d /var/lib/flatpak/overrides 0755 root root - - |
| 14 |
C /var/lib/flatpak/overrides/global 0644 root root - /usr/share/alloy/flatpak/global |
| 15 |
|