nixos/connman: remove syslog.target

This commit is contained in:
lunik1
2024-04-04 16:07:48 +02:00
committed by Sandro Jäckel
parent 0bb462d49c
commit 963f17c958
@@ -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";