From deb4cec8538287c0d7ea3deaa72b40a5f17b4d54 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:15:57 +1000 Subject: [PATCH] nix: fix kdeconnectd user service --- nix/modules/applications.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/modules/applications.nix b/nix/modules/applications.nix index d0c29d8..ed4958a 100644 --- a/nix/modules/applications.nix +++ b/nix/modules/applications.nix @@ -11,7 +11,8 @@ programs.kdeconnect.enable = true; systemd.user.services.kdeconnectd = { enable = true; - after = [ "default.target" ]; + after = [ "network.target" ]; + wantedBy = [ "default.target" ]; description = "kdeconnectd"; serviceConfig = { Type = "simple";