hosts/EDaaS/configuration.nix set users.users.emmathorpe.linger = true with the username hardcoded in the host config, separate from where the account itself is defined.
Impact
Per-user system state scattered across host files; brittle if the host's user changes.
Resolution
Linger is now an opt-in flag in the host table's users set, applied by modules/users.nix only when set. Fixed by the user-registry refactor.
## Problem
`hosts/EDaaS/configuration.nix` set `users.users.emmathorpe.linger = true` with the username hardcoded in the host config, separate from where the account itself is defined.
## Impact
Per-user system state scattered across host files; brittle if the host's user changes.
## Resolution
Linger is now an opt-in flag in the host table's `users` set, applied by `modules/users.nix` only when set. Fixed by the user-registry refactor.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Problem
hosts/EDaaS/configuration.nixsetusers.users.emmathorpe.linger = truewith the username hardcoded in the host config, separate from where the account itself is defined.Impact
Per-user system state scattered across host files; brittle if the host's user changes.
Resolution
Linger is now an opt-in flag in the host table's
usersset, applied bymodules/users.nixonly when set. Fixed by the user-registry refactor.