nixos/synergy: Fix use of the "optional" function.

Commit 939edb1 reintroduced autoStart, but instead of creating a list of
units for the wantedBy list with optional it became a list of lists of
units.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-12-24 12:35:57 +01:00
parent 1a79e7ffdc
commit c7e3ddf7ff
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -86,7 +86,7 @@ in
systemd.services."synergy-client" = {
after = [ "network.target" ];
description = "Synergy client";
wantedBy = optional cfgC.autoStart [ "multi-user.target" ];
wantedBy = optional cfgC.autoStart "multi-user.target";
path = [ pkgs.synergy ];
serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergyc -f ${optionalString (cfgC.screenName != "") "-n ${cfgC.screenName}"} ${cfgC.serverAddress}'';
};
@ -95,7 +95,7 @@ in
systemd.services."synergy-server" = {
after = [ "network.target" ];
description = "Synergy server";
wantedBy = optional cfgS.autoStart [ "multi-user.target" ];
wantedBy = optional cfgS.autoStart "multi-user.target";
path = [ pkgs.synergy ];
serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergys -c ${cfgS.configFile} -f ${optionalString (cfgS.address != "") "-a ${cfgS.address}"} ${optionalString (cfgS.screenName != "") "-n ${cfgS.screenName}" }'';
};