mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
10 lines
213 B
Nix
10 lines
213 B
Nix
![]() |
{ flake, matchHelper, ... }:
|
||
|
let
|
||
|
inherit (flake.config.people) user0;
|
||
|
inherit (flake.config.people.users.${user0}) email;
|
||
|
in
|
||
|
[
|
||
|
(matchHelper ":mail0" email.address0)
|
||
|
(matchHelper ":mail1" email.address2)
|
||
|
]
|