From 4d42161fd247419ed365766c882f9cc6a53f1620 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 1 Jun 2023 09:24:42 -0400 Subject: [PATCH] Switch matrix back to postgres 14 --- machines/matrix/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/machines/matrix/configuration.nix b/machines/matrix/configuration.nix index acbcac7..24ec356 100644 --- a/machines/matrix/configuration.nix +++ b/machines/matrix/configuration.nix @@ -45,7 +45,9 @@ passwordFile = config.sops.secrets."borg-password".path; sshKey = config.sops.secrets."borg-ssh-key".path; }; - postgresql.backup = true; + # postgresql.backup = true; + # Disabled for now due to lack of space :(, waiting for pendulum to get fixed so I can migrate over to it + postgresql.backup = false; }; config = { setupGrub = false; @@ -80,7 +82,7 @@ }; # Set postgresql version - services.postgresql.package = pkgs.postgresql_15; + # services.postgresql.package = pkgs.postgresql_15; # Setup home manager home-manager.users.nathan = import ./home.nix;