summary refs log tree commit diff
path: root/nixos/modules/services/backup/postgresql-backup.nix
diff options
context:
space:
mode:
authorChristian Kampka <christian@kampka.net>2019-12-15 13:14:21 +0100
committerChristian Kampka <christian@kampka.net>2019-12-15 13:14:21 +0100
commit2387deec3df97cdd3e0295407925837f2e1b0603 (patch)
treee46b4e5a4162b62f26d451b84ca199f5aac4e8b4 /nixos/modules/services/backup/postgresql-backup.nix
parent86ed15dcce7de9c9cac5755663b622142a89d76d (diff)
downloadnixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar.gz
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar.bz2
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar.lz
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar.xz
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.tar.zst
nixpkgs-2387deec3df97cdd3e0295407925837f2e1b0603.zip
postgresql-backup: Use saner defaults for pg_dump
Diffstat (limited to 'nixos/modules/services/backup/postgresql-backup.nix')
-rw-r--r--nixos/modules/services/backup/postgresql-backup.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/backup/postgresql-backup.nix b/nixos/modules/services/backup/postgresql-backup.nix
index e768d1b9918..580c7ce68f1 100644
--- a/nixos/modules/services/backup/postgresql-backup.nix
+++ b/nixos/modules/services/backup/postgresql-backup.nix
@@ -89,7 +89,7 @@ in {
 
       pgdumpOptions = mkOption {
         type = types.separatedString " ";
-        default = "-Cbo";
+        default = "-C";
         description = ''
           Command line options for pg_dump. This options is not used
           if <literal>config.services.postgresqlBackup.backupAll</literal> is enabled.