nixos/matterbridge: fix package access

was broken by 4371ecb8a61f672b3bbf82fca32efbb418a3730f due to the
switch to buildGoModule
This commit is contained in:
zimbatm 2020-01-10 21:00:43 +01:00
parent f8df74be4b
commit 93204f1d8a
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7

View File

@ -111,7 +111,7 @@ in
serviceConfig = { serviceConfig = {
User = cfg.user; User = cfg.user;
Group = cfg.group; Group = cfg.group;
ExecStart = "${pkgs.matterbridge.bin}/bin/matterbridge -conf ${matterbridgeConfToml}"; ExecStart = "${pkgs.matterbridge}/bin/matterbridge -conf ${matterbridgeConfToml}";
Restart = "always"; Restart = "always";
RestartSec = "10"; RestartSec = "10";
}; };