Avoid multi line strings when unnecessary

This commit is contained in:
SebastianStork 2025-04-13 14:41:59 +02:00
parent 33657999e2
commit 60115c4775
3 changed files with 5 additions and 15 deletions

View file

@ -12,12 +12,8 @@
healthchecks.enable = true;
extraConfig = {
backupPrepareCommand = ''
${lib.getExe' pkgs.systemd "systemctl"} stop hedgedoc.service
'';
backupCleanupCommand = ''
${lib.getExe' pkgs.systemd "systemctl"} start hedgedoc.service
'';
backupPrepareCommand = "${lib.getExe' pkgs.systemd "systemctl"} stop hedgedoc.service";
backupCleanupCommand = "${lib.getExe' pkgs.systemd "systemctl"} start hedgedoc.service";
paths = [ "/var/lib/hedgedoc" ];
};
};