mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 19:49:45 +01: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:
parent
2f2a4396c6
commit
ee1c40e5c5
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
ExecStart = "${cfg.package}/bin/keynav";
|
ExecStart = "${pkgs.keynav}/bin/keynav";
|
||||||
RestartSec = 3;
|
RestartSec = 3;
|
||||||
Restart = "always";
|
Restart = "always";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue