system/secrets.example.nix

22 lines
434 B
Nix
Raw Normal View History

2022-04-05 10:03:33 +03:00
{
2022-08-28 04:54:03 +03:00
networking.extraHosts = ''
127.0.0.2 other-localhost
'';
2022-08-30 04:32:05 +03:00
realName = "Bob";
userName = "bob";
userDir = "/home/bob";
userEmail = "bob@example.com";
2022-04-05 11:26:26 +03:00
2022-08-30 04:32:05 +03:00
# gpg --list-secret-keys
gpgSigningKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
2022-08-30 04:32:05 +03:00
emailAccounts = {
"personal" = {
flavor = "yandex.com";
address = "bross@yandex.ru";
passwordCommand = "pass show emails/bross@yandex.ru";
};
2022-08-30 04:32:05 +03:00
};
}