nixos/borgbackup: specify systemd WorkingDirectory

Changed files
+1
nixos
modules
services
+1
nixos/modules/services/backup/borgbackup.nix
···
serviceConfig = {
# The service's only task is to ensure that the specified path exists
Type = "oneshot";
+
WorkingDirectory = cfg.path;
};
wantedBy = [ "multi-user.target" ];
};