diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 19:18:28 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 19:18:28 +0200 |
| commit | 0b979e655d2834c2e5cf41cac75bb21b9e45a18d (patch) | |
| tree | 6ca26abb9fecf539984585598e2c1b77742e5704 /common/home/accounts | |
| parent | 58707f0f980c2f6095c6d836c5724b9ec417c4e1 (diff) | |
add email
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; + }; + }; +} |