nextcloud autostart service hurricane: 41 current 2025-06-19 17:28:13 25.05.20250617.36ab78d 6.15.2 *
12 lines
226 B
Nix
12 lines
226 B
Nix
{lib, ...}: {
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
startInBackground = true;
|
|
};
|
|
systemd.user.services.nextcloud-client = {
|
|
Unit = {
|
|
After = lib.mkForce "graphical-session.target";
|
|
};
|
|
};
|
|
}
|