nix-config/lib/strings.nix

8 lines
175 B
Nix
Raw Permalink Normal View History

2021-10-12 17:53:10 +02:00
{ ... }:
{
2021-10-12 17:53:23 +02:00
# Make an email address from the name and domain stems
#
# mkMailAddress :: String -> String -> String
mkMailAddress = name: domain: "${name}@${domain}";
2021-10-12 17:53:10 +02:00
}