feat: Added thunderbird

This commit is contained in:
uttarayan21
2025-03-29 12:19:32 +05:30
parent 8218f96532
commit 39a02eae9a
3 changed files with 9 additions and 1 deletions

View File

@@ -21,5 +21,6 @@ lib.optionalAttrs device.hasGui {
./gimp.nix ./gimp.nix
./kicad.nix ./kicad.nix
./chromium.nix ./chromium.nix
./thunderbird.nix
]; ];
} }

View File

@@ -52,6 +52,6 @@
}; };
}; };
in { in {
programs.librewolf = config // {package = pkgs.firefox-nightly;}; programs.librewolf = config;
programs.firefox = config; programs.firefox = config;
} }

View File

@@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.thunderbird = {
enable = true;
profiles = {
};
};
}