From f660b1884b74dd193ec0939c664037eb2ae98cb4 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Fri, 3 Jun 2022 02:36:16 -0400 Subject: [PATCH] Add protonmail bridge --- flake.nix | 1 + modules/protonmail.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 modules/protonmail.nix diff --git a/flake.nix b/flake.nix index c742727..298aa19 100644 --- a/flake.nix +++ b/flake.nix @@ -128,6 +128,7 @@ ./modules/printing.nix ./modules/zt.nix ./modules/lxc.nix + ./modules/protonmail.nix ./applications/communications.nix ./applications/devel-core.nix ./applications/devel-core-linux.nix diff --git a/modules/protonmail.nix b/modules/protonmail.nix new file mode 100644 index 0000000..daad5b6 --- /dev/null +++ b/modules/protonmail.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + # Install protonmail-bridge and pass + environment.systemPackages = with pkgs; [ + protonmail-bridge + pass + ]; +}