move data to data drive

This commit is contained in:
Satria 2026-04-16 19:48:28 +07:00
commit a6c8935bf2
3 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
services.postgresql = {
enable = true;
dataDir = "/mnt/data/apps/postgresql";
package = pkgs.postgresql_16;
};
}