Establish baseline

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-20 04:21:11 +02:00
commit 8df205457a
26 changed files with 678 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
{ config, pkgs, lib, ... }:
let
tbProfile = pkgs.stdenv.mkDerivation {
name = "thunderbird-profile";
src = ./thunderbird-profile;
installPhase = ''
mkdir -p $out
cp -r . $out/
'';
};
in
{
home.packages = with pkgs; [
# New system packages
];
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird;
policies = {
DisableTelemetry = true;
DisableAppUpdate = true;
Preferences = {
"mail.provider.enabled" = false;
"mail.openpgp.allow_external_gnupg" = true;
"calendar.timezone.local" = "Europe/Berlin";
};
Certificates = {
ImportEnterpriseRoots = true;
};
PasswordManagerEnabled = true;
Cookies = {
"Default" = false;
"AcceptThirdParty" = "never";
"Locked" = true;
};
DefaultDownloadDirectory = "/tmp";
DisableBuiltinPDFViewer = true;
DisablePasswordReveal = true;
};
};
}