This commit is contained in:
Lilith 2025-04-26 01:42:02 +02:00
parent b6f7d20631
commit 187a390cd2
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
4 changed files with 15 additions and 16 deletions

View file

@ -1,7 +1,10 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.gpg = {
enable = true;
settings.trust-model = "tofu+pgp";
settings = {
trust-model = "tofu+pgp";
};
};
services.gpg-agent = {

View file

@ -70,8 +70,6 @@
allow_tearing = false;
};
ecosystem.no_update_news = true;
decoration = {
rounding = 10;

View file

@ -8,20 +8,18 @@
programs.thunderbird = {
enable = true;
settings = {
"general.useragent.override" = "";
"privacy.donottrackheader.enabled" = true;
"mail.openpgp.allow_external_gnupg" = true;
"mail.openpgp.fetch_pubkeys_from_gnupg" = true;
};
profiles."lilith" = {
isDefault = true;
withExternalGnupg = true;
};
};
sops.secrets = {
"email/personal/password" = { };
"email/uni/password" = { };
"email/work/password" = { };
"email/fau/password" = { };
};
# As this contains personal information, this part of the config has been
# put in a separate, private repository. Do _not_ use this for actual secrets!
accounts.email.accounts = flake-private.home.accounts.email.accounts { inherit config; };