os/modules/nextcloud/nextcloud.service.nix

21 lines
600 B
Nix
Raw Normal View History

2022-11-20 22:28:23 +00:00
pkgs: {
2021-05-30 19:10:28 +00:00
Unit = {
Description = "Nextcloud Client";
2022-11-20 22:28:23 +00:00
BindsTo = ["sway-session.target"];
Wants = ["graphical-session-pre.target"];
After = ["graphical-session-pre.target"];
2021-05-30 19:10:28 +00:00
# ConditionEnvironment requires systemd v247 to work correctly
2022-11-20 22:28:23 +00:00
ConditionEnvironment = ["WAYLAND_DISPLAY"];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "simple";
ExecStart = "${pkgs.nextcloud-client}/bin/nextcloud --background";
ExecReload = "/run/current-system/sw/bin/kill -HUP $MAINPID";
KillMode = "process";
Restart = "on-failure";
};
Install = {
2022-11-20 22:28:23 +00:00
WantedBy = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
};
}