nachtigall: make postgres wait for zfs mount

Co-authored-by: b12f <b12f@noreply.git.pub.solar>
Co-authored-by: Hendrik Sokolowski <hensoko@noreply.git.pub.solar>
This commit is contained in:
teutat3s 2024-08-27 09:59:55 +02:00
parent 701c62dd69
commit a0b52d51e5
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 5 additions and 5 deletions

View file

@ -52,6 +52,11 @@
nixpkgs.config.permittedInsecurePackages = [ "keycloak-23.0.6" ];
systemd.services.postgresql = {
after = [ "var-lib-postgresql.mount" ];
requisite = [ "var-lib-postgresql.mount" ];
};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you

View file

@ -25,9 +25,4 @@
full_page_writes = false;
};
};
systemd.services.postgresql = {
after = [ "var-lib-postgresql.mount" ];
requisite = [ "var-lib-postgresql.mount" ];
};
}