keynav: use correct ExecStart command

When the change requested in

  https://github.com/rycee/home-manager/pull/1082#discussion_r392715440

was applied, the service `ExecStart` attribute was not updated to use
`pkgs.keynav`.

Fixes #1177
PR #1184

(cherry picked from commit ee1c40e5c5)
This commit is contained in:
Paul 2020-04-22 17:42:18 +02:00 committed by Robert Helgesson
parent 42e4eef749
commit 2dd4c20f49
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -18,7 +18,7 @@ in {
};
Service = {
ExecStart = "${cfg.package}/bin/keynav";
ExecStart = "${pkgs.keynav}/bin/keynav";
RestartSec = 3;
Restart = "always";
};