mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
Use builtins.groupBy over lib.groupBy because of performance
See https://github.com/NixOS/nix/pull/5715
This commit is contained in:
parent
b601f42f93
commit
ac48782b56
3 changed files with 3 additions and 3 deletions
|
|
@ -142,7 +142,7 @@ in
|
|||
'';
|
||||
virtualHosts =
|
||||
nonTailscaleHosts
|
||||
|> lib.groupBy (value: lib'.rootDomainOf value.domain)
|
||||
|> builtins.groupBy (value: lib'.rootDomainOf value.domain)
|
||||
|> lib.mapAttrs' mkWildCardDomain;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue