From 963f17c958855a2454bfaee7b600938373799012 Mon Sep 17 00:00:00 2001 From: lunik1 Date: Tue, 22 Feb 2022 16:56:28 +0000 Subject: [PATCH] nixos/connman: remove syslog.target --- nixos/modules/services/networking/connman.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/connman.nix b/nixos/modules/services/networking/connman.nix index c626945ccd0c..4d012e525693 100644 --- a/nixos/modules/services/networking/connman.nix +++ b/nixos/modules/services/networking/connman.nix @@ -100,7 +100,7 @@ in { systemd.services.connman = { description = "Connection service"; wantedBy = [ "multi-user.target" ]; - after = [ "syslog.target" ] ++ lib.optional enableIwd "iwd.service"; + after = lib.optional enableIwd "iwd.service"; requires = lib.optional enableIwd "iwd.service"; serviceConfig = { Type = "dbus"; @@ -119,7 +119,6 @@ in { systemd.services.connman-vpn = lib.mkIf cfg.enableVPN { description = "ConnMan VPN service"; wantedBy = [ "multi-user.target" ]; - after = [ "syslog.target" ]; before = [ "connman.service" ]; serviceConfig = { Type = "dbus";