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