Don't spawn nextcloud where it isn't necessary

This commit is contained in:
Emmet 2025-03-02 12:35:03 -06:00
parent 277dd6992c
commit ae2090378a
2 changed files with 9 additions and 0 deletions

View file

@ -57,6 +57,10 @@
email = "";
stylix.theme = "spaceduck";
};
home-manager.users.corrina.services.nextcloud-client = {
enable = lib.mkForce false;
startInBackground = lib.mkForce false;
};
};

View file

@ -71,5 +71,10 @@
output = "eDP-1"; # notifications only on main display
};
};
services.nextcloud-client = {
enable = lib.mkForce false;
startInBackground = lib.mkForce false;
};
};
}