Switch matrix back to postgres 14

This commit is contained in:
Nathan McCarty 2023-06-01 09:24:42 -04:00
parent d4124fedba
commit 4d42161fd2
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 4 additions and 2 deletions

View File

@ -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;