forked from fabian/nix_config
22 lines
467 B
Nix
22 lines
467 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.local.services.accounts;
|
|
in {
|
|
options.local.services.accounts.enable = mkEnableOption "accounts settings";
|
|
config = mkIf cfg.enable {
|
|
accounts.email.accounts = {
|
|
"josescalante9808@gmail.com" = {
|
|
address = "josescalante9808@gmail..com";
|
|
userName = "josescalante9808";
|
|
realName = "josem";
|
|
primary = true;
|
|
flavor = "gmail.com";
|
|
};
|
|
};
|
|
};
|
|
}
|