From ae2090378a47e16346fee2fdb385daf77431fb79 Mon Sep 17 00:00:00 2001 From: Emmet Date: Sun, 2 Mar 2025 12:35:03 -0600 Subject: [PATCH] Don't spawn nextcloud where it isn't necessary --- hosts/snowfire/configuration.nix | 4 ++++ hosts/zenith/home.nix | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/hosts/snowfire/configuration.nix b/hosts/snowfire/configuration.nix index be9d8057..6e7990e6 100644 --- a/hosts/snowfire/configuration.nix +++ b/hosts/snowfire/configuration.nix @@ -57,6 +57,10 @@ email = ""; stylix.theme = "spaceduck"; }; + home-manager.users.corrina.services.nextcloud-client = { + enable = lib.mkForce false; + startInBackground = lib.mkForce false; + }; }; diff --git a/hosts/zenith/home.nix b/hosts/zenith/home.nix index 1a91797c..48c65e16 100644 --- a/hosts/zenith/home.nix +++ b/hosts/zenith/home.nix @@ -71,5 +71,10 @@ output = "eDP-1"; # notifications only on main display }; }; + + services.nextcloud-client = { + enable = lib.mkForce false; + startInBackground = lib.mkForce false; + }; }; }