feat: add locked thunderbird options

This commit is contained in:
Nydragon 2024-06-07 12:09:16 +09:00
parent 80977eaecf
commit 2b71d19006
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 12 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./networking.nix
./nix
./programs/firefox.nix
./programs/thunderbird.nix
./programs/sway.nix
];
}

View file

@ -0,0 +1,11 @@
{ ... }:
{
programs.thunderbird = {
enable = true;
preferencesStatus = "locked";
preferences = {
"mail.biff.play_sound" = false;
"mail.chat.play_sound" = false;
};
};
}