feat: run job as root because of permissions, adds ssh environment

This commit is contained in:
Ahwx 2025-07-03 15:27:54 +02:00
parent 57361c61ae
commit c0a68ae5ea

View file

@ -45,7 +45,10 @@ in
${pkgs.ntfy-sh}/bin/ntfy send https://notify.liv.town/${hostname} "borgbackup: ${hostname} backup (violet-lib) completed succesfully with exit status $exitStatus"
fi
'';
user = "${username}";
# user = "${username}";
environment = {
BORG_RSH = "ssh -p 9123 -i /home/liv/.ssh/id_ed25519";
};
};
};
}