From c7e3ddf7ff099c0eb3561409f44e949cf16af591 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 24 Dec 2014 12:35:57 +0100 Subject: 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 --- nixos/modules/services/misc/synergy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nixos') diff --git a/nixos/modules/services/misc/synergy.nix b/nixos/modules/services/misc/synergy.nix index 2290bc532f53..054df965347d 100644 --- a/nixos/modules/services/misc/synergy.nix +++ b/nixos/modules/services/misc/synergy.nix @@ -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}" }''; }; -- cgit 1.4.1