Add nextcloud client
This commit is contained in:
39
desktop-environment/planner.nix
Normal file
39
desktop-environment/planner.nix
Normal file
@@ -0,0 +1,39 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
tbProfile = pkgs.stdenv.mkDerivation {
|
||||
name = "thunderbird-profile";
|
||||
src = ./thunderbird-profile;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -r . $out/
|
||||
'';
|
||||
};
|
||||
in
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
# New system packages
|
||||
];
|
||||
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
package = pkgs.thunderbird;
|
||||
|
||||
policies = {
|
||||
DisableTelemetry = true;
|
||||
DisableAppUpdate = true;
|
||||
|
||||
EnableOpenPGP = true;
|
||||
|
||||
Preferences = {
|
||||
"mail.provider.enabled" = false;
|
||||
"mail.openpgp.allow_external_gnupg" = true;
|
||||
"calendar.timezone.local" = "Europe/Berlin";
|
||||
};
|
||||
|
||||
Certificates = {
|
||||
ImportEnterpriseRoots = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user