diff options
Diffstat (limited to 'common/home/accounts')
| -rw-r--r-- | common/home/accounts/default.nix | 4 | ||||
| -rw-r--r-- | common/home/accounts/email.nix | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/common/home/accounts/default.nix b/common/home/accounts/default.nix new file mode 100644 index 0000000..43ce600 --- /dev/null +++ b/common/home/accounts/default.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + email.accounts = import ./email.nix; +} diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix new file mode 100644 index 0000000..2b9b6c6 --- /dev/null +++ b/common/home/accounts/email.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + default = { + address = "nathan@nathanreiner.xyz"; + + neomutt = { + enable = true; + }; + }; +} |