chore: format everything

This commit is contained in:
oddlama 2024-11-26 13:34:55 +01:00
parent deca311c68
commit 7ccd7856ee
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
162 changed files with 4750 additions and 3718 deletions

View file

@ -2,16 +2,19 @@
config,
lib,
...
}: {
accounts.email.accounts = lib.flip lib.mapAttrs' config.userSecrets.accounts.email (_n: v:
}:
{
accounts.email.accounts = lib.flip lib.mapAttrs' config.userSecrets.accounts.email (
_n: v:
lib.nameValuePair v.address (
lib.recursiveUpdate v {
thunderbird = {
enable = true;
profiles = ["personal"];
profiles = [ "personal" ];
};
}
));
)
);
programs.thunderbird = {
enable = true;
@ -81,8 +84,8 @@
];
xdg.mimeApps.defaultApplications = {
"x-scheme-handler/mailto" = ["thunderbird.desktop"];
"x-scheme-handler/mid" = ["thunderbird.desktop"];
"message/rfc822" = ["thunderbird.desktop"];
"x-scheme-handler/mailto" = [ "thunderbird.desktop" ];
"x-scheme-handler/mid" = [ "thunderbird.desktop" ];
"message/rfc822" = [ "thunderbird.desktop" ];
};
}