feat: add locked thunderbird options
This commit is contained in:
parent
80977eaecf
commit
2b71d19006
2 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./nix
|
./nix
|
||||||
./programs/firefox.nix
|
./programs/firefox.nix
|
||||||
|
./programs/thunderbird.nix
|
||||||
./programs/sway.nix
|
./programs/sway.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
11
modules/programs/thunderbird.nix
Normal file
11
modules/programs/thunderbird.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
programs.thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
preferencesStatus = "locked";
|
||||||
|
preferences = {
|
||||||
|
"mail.biff.play_sound" = false;
|
||||||
|
"mail.chat.play_sound" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue