From 0fc652d311174abf6d68fef46a102e21972a953a Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Thu, 25 Aug 2022 23:16:44 +0300 Subject: [PATCH] nix/secret: use predefined flavor... ...instead of custom imap configuration --- nix/secrets.example.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nix/secrets.example.nix b/nix/secrets.example.nix index 992cc92..fb4b202 100644 --- a/nix/secrets.example.nix +++ b/nix/secrets.example.nix @@ -10,4 +10,12 @@ # gpg --list-secret-keys gpgSigningKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" }; + + emailAccounts = { + "personal" = { + flavor = "yandex.com"; + address = "bross@yandex.ru"; + passwordCommand = "pass show emails/bross@yandex.ru"; + }; + }; }