0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Fixes #16181 - using bin output for Go services

This commit is contained in:
Kamil Chmielewski 2016-06-13 23:32:16 +02:00
parent d2b58dd39a
commit 437ea9fd37
9 changed files with 12 additions and 12 deletions

View file

@ -83,7 +83,7 @@ in {
SKYDNS_NAMESERVERS = concatStringsSep "," cfg.nameservers;
};
serviceConfig = {
ExecStart = "${cfg.package}/bin/skydns";
ExecStart = "${cfg.package.bin}/bin/skydns";
};
};