summaryrefslogtreecommitdiff
path: root/nix/modules/home/default.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2026-02-17 19:21:56 -0800
committerPreston Pan <ret2pop@gmail.com>2026-02-17 19:21:56 -0800
commit243ebf35c43c9bb6f64c1fd1a51794e55f640780 (patch)
tree7aa3f10c69967c5a1641917910306eeb02c7a632 /nix/modules/home/default.nix
parent40f5a8b407c0c771005c3f64b72d3c9b9da4c586 (diff)
parent9a930ea12bd743e9ca57b70911f8c35d97af3320 (diff)
Merge branch 'main' of ret2pop.net:/srv/git/monorepo
Diffstat (limited to 'nix/modules/home/default.nix')
-rw-r--r--nix/modules/home/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/modules/home/default.nix b/nix/modules/home/default.nix
index b1c07c3..a45ce59 100644
--- a/nix/modules/home/default.nix
+++ b/nix/modules/home/default.nix
@@ -53,19 +53,19 @@
email = {
email = lib.mkOption {
type = lib.types.str;
- default = "ret2pop@gmail.com";
+ default = "ret2pop@nullring.xyz";
example = "john@example.com";
description = "Email address and imaps/smtps account";
};
imapsServer = lib.mkOption {
type = lib.types.str;
- default = "imap.gmail.com";
+ default = "mail.nullring.xyz";
example = "imap.example.com";
description = "imaps server address";
};
smtpsServer = lib.mkOption {
type = lib.types.str;
- default = "smtp.gmail.com";
+ default = "mail.nullring.xyz";
example = "smtp.example.com";
description = "smtp server address";
};