This commit is contained in:
2026-03-26 20:26:31 -05:00
parent 979344917e
commit 53489fe173
9 changed files with 108 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
{ config, lib, pkgs, namespace, ... }:
let
cfg = config.${namespace}.services.protonmail;
in
{
options.${namespace}.services.protonmail = {
enable = lib.mkEnableOption "protonmail bridge";
};
config = lib.mkIf cfg.enable {
services.protonmail-bridge = {
enable = true;
extraPackages = with pkgs; [ pass ];
};
home.packages = with pkgs; [ protonmail-bridge-gui ];
};
}