nixos/matterbridge: fix package access

was broken by 4371ecb8a6 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
1 changed files with 1 additions and 1 deletions

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";
}; };