aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/systemd-units/system
Commit message (Collapse)AuthorAgeFilesLines
* refactor(units): split systemd-units into system/ and user/ treesLibravatar sommerfeld2026-05-133-0/+36
Move the three existing files into systemd-units/system/ and seed systemd-units/user/ with a .ignore stub. Teach the unit-* recipes a user:/system: group-token prefix (bare names keep system semantics for back-compat). unit-apply and unit-status now walk both scopes; user units go through 'systemctl --user' (no sudo), system units via 'sudo systemctl' as before. Soft-fail per unit preserved for both scopes. Top-level add/forget dispatchers need no changes: the unit-extension sniff already routes anything ending in .service/.timer/etc to unit-*, and user:base passes through as the group token. Docs updated in README.md and .github/copilot-instructions.md.