10 lines
239 B
Nix
10 lines
239 B
Nix
{ lib, config, ... }:
|
|
lib.mkIf config.programs.thunderbird.enable {
|
|
programs.thunderbird = {
|
|
preferencesStatus = "locked";
|
|
preferences = {
|
|
"mail.biff.play_sound" = false;
|
|
"mail.chat.play_sound" = false;
|
|
};
|
|
};
|
|
}
|