[thunderbird] Tweak

This commit is contained in:
Tibo De Peuter 2023-10-20 20:01:07 +02:00
parent addf2c6c22
commit 94781cecbf

View file

@ -12,7 +12,7 @@ let
Met vriendelijke groeten
Tibo De Peuter
Student 2Ba Informatica
Student 2Ba/3Ba Informatica
'';
MrFortem = ''
Kind regards
@ -22,7 +22,6 @@ let
in {
config = lib.mkIf cfg.enable {
home-manager.users.tdpeuter = lib.mkIf config.sisyphus.programs.home-manager.enable {
home = {
accounts.email.accounts = {
Telenet = {
address = "tibo.depeuter@telenet.be";
@ -41,7 +40,7 @@ in {
};
};
realName = "Tibo De Peuter";
realName = config.users.users.tdpeuter.description;
signature = {
showSignature = "append";
text = signatures.default;
@ -59,7 +58,7 @@ in {
flavor = "outlook.office365.com";
address = "tibo.depeuter@ugent.be";
realName = "Tibo De Peuter";
realName = config.users.users.tdpeuter.description;
signature = {
showSignature = "append";
text = signatures.UGent;
@ -78,7 +77,7 @@ in {
flavor = "gmail.com";
address = "tibo.depeuter@gmail.com";
realName = "Tibo De Peuter";
realName = config.users.users.tdpeuter.description;
signature = {
showSignature = "append";
text = signatures.default;
@ -97,11 +96,8 @@ in {
realName = "Fortem Fiducia";
signature = {
showSignature = "attach";
text = ''
Kind regards
MrFortem Fiducia
'';
showSignature = "append";
text = signatures.MrFortem;
};
thunderbird = {
@ -131,5 +127,4 @@ in {
};
};
};
};
}