feat: PostgreSQL migration

This commit is contained in:
Inex Code
2024-12-22 13:19:10 +03:00
parent cca51699ee
commit e348a491b0
5 changed files with 208 additions and 14 deletions

View File

@@ -129,5 +129,15 @@ with lib;
default = false;
description = "Whether to bind-mount vmail and sieve folders";
};
################
# PostgreSQL #
################
postgresql = {
location = mkOption {
description = "Volume name where to store Postgres data.";
type = types.nullOr types.str;
default = null;
};
};
};
}