From 54a3be635ba87e37dc3ea9cc7574b79b9b152a0c Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Sun, 8 Feb 2026 00:58:27 +0100 Subject: [PATCH] Jfc, that was annoying thought typo, changed the systemd user to root for postgres backup. --- nix-system-configs/modules/system_scripts/gcloud_backup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix-system-configs/modules/system_scripts/gcloud_backup.nix b/nix-system-configs/modules/system_scripts/gcloud_backup.nix index a4f9dfd..f2c170a 100644 --- a/nix-system-configs/modules/system_scripts/gcloud_backup.nix +++ b/nix-system-configs/modules/system_scripts/gcloud_backup.nix @@ -126,7 +126,7 @@ in { description = "Backup PostgresSQL databases to GCS"; serviceConfig = { Type = "oneshot"; - User = "postgres"; + User = "root"; ExecStart = "${postgresBackupScript}"; }; };