nix/shared/mail.nix
2025-07-31 18:21:09 +02:00

14 lines
No EOL
242 B
Nix

{ ... }:
let
ensureAccountsWithoutIMAP = [
"test@lasuite.federez.net"
];
in
{
# Import dependencies
imports = [
./mail/maddy.nix
];
_module.args.ensureAccountsWithoutIMAP = ensureAccountsWithoutIMAP;
}