From 8ffe52a3cad25215215d10e31d7cf072f8632f97 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Sat, 21 Jun 2025 13:01:34 +0200 Subject: [PATCH] nextcloud fix? issue client starting twice... --- modules/home/nextcloud.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/home/nextcloud.nix b/modules/home/nextcloud.nix index bc58165..6d6bc7c 100644 --- a/modules/home/nextcloud.nix +++ b/modules/home/nextcloud.nix @@ -1,11 +1,6 @@ -{lib, ...}: { +{ services.nextcloud-client = { enable = true; startInBackground = true; }; - systemd.user.services.nextcloud-client = { - Unit = { - After = lib.mkForce "graphical-session.target"; - }; - }; }