22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-13 19:45:48 +02:00

fix syntax

This commit is contained in:
Sandro - 2023-01-07 04:33:23 +01:00
parent feef1d2d4d
commit efeb1e2973
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -64,10 +64,12 @@ in
${lib.concatStringsSep " " cfgu.extraArgs} \
"$@"
echo "Run the following commands after setting:"
echo 'services.postgresql.package = pkgs.postgresql_${cfgu.newPackage}'
echo " sudo -u postgres vacuumdb --all --analyze-in-stages"
echo " ${newData}/delete_old_cluster.sh"
echo "
Run the following commands after setting:
services.postgresql.package = pkgs.postgresql_${cfgu.newPackage}
sudo -u postgres vacuumdb --all --analyze-in-stages
${newData}/delete_old_cluster.sh
"
''
);
};