move thunderbird to thunderbird.nix

definitely needs sops-nix so i can do declarative thunderbird settings
without doxxing myself lmao
This commit is contained in:
Gabriella Bere 2025-08-11 23:17:26 +01:00
parent 2d1bc6dad4
commit d4eb4387c2
3 changed files with 13 additions and 1 deletions

View file

@ -23,6 +23,7 @@
./obs-studio.nix
./packages.nix
./plasma.nix
./thunderbird.nix
];
home.stateVersion = "24.05";

View file

@ -19,7 +19,6 @@
bc # terminal calculator
wget # download files
vesktop # discord client
thunderbird # email client
fastfetch # silly specs display
ungoogled-chromium # useful when a website breaks in firefox
qbittorrent # torrent client

View file

@ -0,0 +1,12 @@
{ ... }:{
programs.thunderbird = {
enable = true;
# profiles.blue = {
# isDefault = true;
# search = {
# default = "ddg";
# force = true;
# };
# };
};
}