feat(home): add thunderbird module, included in common.nix
This commit is contained in:
parent
31d3e1c2ac
commit
f9e87d2d0a
@ -1,6 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./modules/thunderbird
|
||||||
./modules/nethack
|
./modules/nethack
|
||||||
./modules/firefox
|
./modules/firefox
|
||||||
./modules/neovim
|
./modules/neovim
|
||||||
|
12
home/modules/thunderbird/default.nix
Normal file
12
home/modules/thunderbird/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
programs.thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
"privacy.donottrackheader.enabled" = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
profiles.default = {
|
||||||
|
isDefault = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user