system/secrets.example.nix

26 lines
495 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
'';
user = {
2022-04-05 11:26:26 +03:00
name = "Bob";
dir = "/home/bob";
};
git = {
userName = "Bob Ross";
userEmail = "bross@example.com";
2022-06-01 16:48:29 +03:00
# gpg --list-secret-keys
gpgSigningKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2022-08-29 15:40:41 +03:00
};
2022-08-29 15:40:41 +03:00
emailAccounts = {
"personal" = {
flavor = "yandex.com";
address = "bross@yandex.ru";
passwordCommand = "pass show emails/bross@yandex.ru";
};
};
2022-08-29 15:40:41 +03:00
}