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; + }; }; }