1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +02:00

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
This commit is contained in:
Paul 2020-04-22 17:42:18 +02:00 committed by Robert Helgesson
parent 2f2a4396c6
commit ee1c40e5c5
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";
};