system/services: add protonmail-bridge

This commit is contained in:
Anthony Rodriguez 2024-10-20 19:10:42 +02:00
parent c28f48e872
commit 9ad0713422
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,8 @@
];
gnome.gnome-keyring.enable = true;
gnome.gnome-online-accounts.enable = true;
accounts-daemon.enable = true;
gvfs.enable = true;
};

6
system/services/mail.nix Normal file
View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
services.protonmail-bridge = {
enable = true;
package = pkgs.protonmail-bridge;
};
}