From 49700710786ea1ac6b61b9b6aed7725ffdaa28df Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 14 Jul 2025 13:33:29 +0530 Subject: [PATCH] feat: Enable nextcloud only on linux --- home/apps/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/apps/nextcloud.nix b/home/apps/nextcloud.nix index ce3811f8..fb55a332 100644 --- a/home/apps/nextcloud.nix +++ b/home/apps/nextcloud.nix @@ -4,7 +4,7 @@ ... }: { services.nextcloud-client = { - enable = true; + enable = pkgs.stdenv.isLinux; startInBackground = true; }; }