added protonmail and thunderbird

dev-docs
Moritz Böhme 2021-10-10 11:58:25 +02:00
parent af229e7966
commit c8d2bdc801
2 changed files with 20 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./rofi ./kitty.nix ./zathura.nix ];
imports = [ ./rofi ./kitty.nix ./zathura.nix ./email.nix ];
home-manager.users.moritz.home.packages = with pkgs; [
neofetch
unstable.keepassxc

19
modules/apps/email.nix Normal file
View File

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = { home.packages = with pkgs; [ thunderbird ]; };
services.gnome.gnome-keyring.enable = true;
environment.systemPackages = with pkgs; [ protonmail-bridge ];
systemd.user.services.protonmail-bridge = {
description = "Protonmail Bridge";
enable = true;
script =
"${pkgs.protonmail-bridge}/bin/protonmail-bridge --log-level debug";
path = [
pkgs.gnome3.gnome-keyring
]; # HACK: https://github.com/ProtonMail/proton-bridge/issues/176
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
};
networking.firewall.allowedTCPPorts = [ 33728 1025 1143 ];
}