Fixed issue with protonmail-bridge path

This commit is contained in:
Random936
2025-11-18 20:07:17 -05:00
parent 8281843816
commit 6e1624b26c
3 changed files with 7 additions and 3 deletions

View File

@@ -84,7 +84,11 @@
description = "Protonmail Bridge";
after = [ "network.target" ];
wantedBy = [ "default.target" ];
path = [ pkgs.pass ];
path = with pkgs; [
pass
gnupg
pinentry-gtk2
];
serviceConfig = {
Restart = "always";
ExecStart = "${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive";