summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2023-08-31 13:18:05 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2023-08-31 13:18:05 -0400
commit73f679c8620249ba7a3d8cf9c3bbc5a31f73bcf8 (patch)
treed1f3c2559b9f2c11f478c4742be639b68878b929
parentd81001a4a1e3b3f4bc8a7e72c3b9768a89fb5a29 (diff)
added pass and moved email creds to it
-rw-r--r--home-config/aerc/accounts.conf8
-rw-r--r--home-config/nix-home-manager/home.nix1
2 files changed, 5 insertions, 4 deletions
diff --git a/home-config/aerc/accounts.conf b/home-config/aerc/accounts.conf
index 6c1db87..6f4018a 100644
--- a/home-config/aerc/accounts.conf
+++ b/home-config/aerc/accounts.conf
@@ -1,8 +1,8 @@
1[Personal] 1[Personal]
2source = imaps://ryan%40rschanz.org@mail.rschanz.org:993 2source = imaps://ryan%40rschanz.org@mail.rschanz.org:993
3source-cred-cmd = cat ~/Documents/email_creds/personal.pw 3source-cred-cmd = pass emails/personal 2>/dev/null | tr -d '\n'
4outgoing = smtps://ryan%40rschanz.org@mail.rschanz.org:465 4outgoing = smtps://ryan%40rschanz.org@mail.rschanz.org:465
5outgoing-cred-cmd = cat ~/Documents/email_creds/personal.pw 5outgoing-cred-cmd = pass emails/personal 2>/dev/null | tr -d '\n'
6default = INBOX 6default = INBOX
7from = Ryan Schanzenbacher <ryan@rschanz.org> 7from = Ryan Schanzenbacher <ryan@rschanz.org>
8copy-to = Sent 8copy-to = Sent
@@ -11,9 +11,9 @@ check-mail = 5m
11 11
12[School] 12[School]
13source = imaps+oauthbearer://rjs1877%40rit.edu@imap.gmail.com:993?token_endpoint=https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Ftoken&client_id=667738788924-0rdfvaq9ijfo1vk4474eb3quf8206h2t.apps.googleusercontent.com&client_secret=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 13source = imaps+oauthbearer://rjs1877%40rit.edu@imap.gmail.com:993?token_endpoint=https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Ftoken&client_id=667738788924-0rdfvaq9ijfo1vk4474eb3quf8206h2t.apps.googleusercontent.com&client_secret=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
14source-cred-cmd = cat ~/Documents/email_creds/rit_personal.pw 14source-cred-cmd = pass emails/rit_personal 2>/dev/null | tr -d '\n'
15outgoing = smtps+oauthbearer://rjs1877%40rit.edu@imap.gmail.com:465?token_endpoint=https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Ftoken&client_id=667738788924-0rdfvaq9ijfo1vk4474eb3quf8206h2t.apps.googleusercontent.com&client_secret=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 15outgoing = smtps+oauthbearer://rjs1877%40rit.edu@imap.gmail.com:465?token_endpoint=https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Ftoken&client_id=667738788924-0rdfvaq9ijfo1vk4474eb3quf8206h2t.apps.googleusercontent.com&client_secret=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
16outgoing-cred-cmd = cat ~/Documents/email_creds/rit_personal.pw 16outgoing-cred-cmd = pass emails/rit_personal 2>/dev/null | tr -d '\n'
17from = Ryan Schanzenbacher <rjs1877@rit.edu> 17from = Ryan Schanzenbacher <rjs1877@rit.edu>
18signature-file = ~/.config/aerc/signature_rit_personal 18signature-file = ~/.config/aerc/signature_rit_personal
19check-mail = 5m 19check-mail = 5m
diff --git a/home-config/nix-home-manager/home.nix b/home-config/nix-home-manager/home.nix
index d19051c..f5833e4 100644
--- a/home-config/nix-home-manager/home.nix
+++ b/home-config/nix-home-manager/home.nix
@@ -29,6 +29,7 @@
29 # pkgs.hello 29 # pkgs.hello
30 yt-dlp 30 yt-dlp
31 xdg-desktop-portal-hyprland 31 xdg-desktop-portal-hyprland
32 pass
32 33
33 # # It is sometimes useful to fine-tune packages, for example, by applying 34 # # It is sometimes useful to fine-tune packages, for example, by applying
34 # # overrides. You can do that directly here, just don't forget the 35 # # overrides. You can do that directly here, just don't forget the