11 lines
201 B
Nix
11 lines
201 B
Nix
{ ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
preferencesStatus = "locked";
|
|
preferences = {
|
|
"mail.biff.play_sound" = false;
|
|
"mail.chat.play_sound" = false;
|
|
};
|
|
};
|
|
}
|