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