14 lines
440 B
Nix
14 lines
440 B
Nix
{ pkgs, ... }: {
|
|
systemd.user.services.protonmail-bridge = {
|
|
description = "Protonmail Bridge";
|
|
enable = true;
|
|
script =
|
|
"${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive --log-level info";
|
|
|
|
path = [ pkgs.gnome3.gnome-keyring ];
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
};
|
|
users.users.agatha.packages = [ pkgs.unstable.protonmail-bridge-gui ];
|
|
}
|