mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
firefox: fix selection of lastUserContextId
The lastUserContextId value should match the highest context ID from
the containers set in a given profile. This update ensures that this
always is the case.
(cherry picked from commit ec4c6928bb
)
This commit is contained in:
parent
208df2e558
commit
2ab00f89dd
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ let
|
|||
${builtins.toJSON {
|
||||
version = 4;
|
||||
lastUserContextId =
|
||||
elemAt (mapAttrsToList (_: container: container.id) containers) 0;
|
||||
foldlAttrs (acc: _: value: if value.id > acc then value.id else acc) 0
|
||||
containers;
|
||||
identities = mapAttrsToList containerToIdentity containers ++ [
|
||||
{
|
||||
userContextId = 4294967294; # 2^32 - 2
|
||||
|
|
Loading…
Reference in a new issue