1
0
Fork 0

Fix email2matrix module

This commit is contained in:
Malte Brandy 2020-05-22 03:41:05 +02:00
parent be6c8f20e1
commit 5eee72c866

View file

@ -1,6 +1,5 @@
{ pkgs, config, ... }:
let
inherit (import ../pkgs) email2matrix;
default_mailbox = {
MailboxName = "<missing>";
MatrixRoomId = "<missing>";
@ -45,7 +44,7 @@ let
in {
systemd.services.email2matrix = {
script =
"${email2matrix}/bin/devture-email2matrix --config ${email2matrix-config}";
"${pkgs.email2matrix}/bin/devture-email2matrix --config ${email2matrix-config}";
wantedBy = [ "multi-user.target" ];
};
}