system/nix/secrets.example.nix
Dmitriy Pleshevskiy 0fc652d311
nix/secret: use predefined flavor...
...instead of custom imap configuration
2022-08-25 23:16:51 +03:00

22 lines
409 B
Nix

{
home = {
name = "Bob";
dir = "/home/bob";
};
git = {
userName = "Bob Ross";
userEmail = "bross@example.com";
# gpg --list-secret-keys
gpgSigningKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
};
emailAccounts = {
"personal" = {
flavor = "yandex.com";
address = "bross@yandex.ru";
passwordCommand = "pass show emails/bross@yandex.ru";
};
};
}