From 73480026b00685bc178acb00b55d917c67caad3f Mon Sep 17 00:00:00 2001 From: sils Date: Tue, 6 Jun 2023 13:45:03 +0200 Subject: Feat(system/file_system_layout): Add bindmount for postgresql --- system/file_system_layouts/default.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'system/file_system_layouts') diff --git a/system/file_system_layouts/default.nix b/system/file_system_layouts/default.nix index 31b0b0b..4cd9ff1 100644 --- a/system/file_system_layouts/default.nix +++ b/system/file_system_layouts/default.nix @@ -44,6 +44,10 @@ in { device = "/srv/acme"; options = ["bind"]; }; + "/var/lib/postgresql" = { + device = "/srv/postgresql"; + options = ["bind"]; + }; }; }; } -- cgit 1.4.1