diff options
| author | Igor Pashev <pashev.igor@gmail.com> | 2026-06-09 17:41:41 +0200 |
|---|---|---|
| committer | Igor Pashev <pashev.igor@gmail.com> | 2026-06-09 20:01:38 +0200 |
| commit | 9461ebaea8a338f388adec51c0255e7cde8d4e12 (patch) | |
| tree | 0f9e0abe6eff2050e01a7177157cc4d1a2532f45 | |
| parent | 6baf14ee302dc4cf36bebc33d800ae4b33e65975 (diff) | |
| download | nixsap-master.tar.gz | |
| -rw-r--r-- | modules/apps/postgresql/server.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/apps/postgresql/server.nix b/modules/apps/postgresql/server.nix index c24494c..085eaae 100644 --- a/modules/apps/postgresql/server.nix +++ b/modules/apps/postgresql/server.nix @@ -19,9 +19,6 @@ let in { options = { - DateStyle = optional str; - IntervalStyle = optional (enum [ "sql_standard" "postgres_verbose" "iso_8601" ]); - TimeZone = optional str; application_name = optional str; archive_command = optional path; archive_mode = optional bool; @@ -60,6 +57,7 @@ in { cpu_tuple_cost = optional float; cursor_tuple_fraction = optional float; data_directory = mandatory path; + DateStyle = optional str; deadlock_timeout = optional int; debug_pretty_print = optional bool; debug_print_parse = optional bool; @@ -104,6 +102,7 @@ in { hot_standby_feedback = optional bool; huge_pages = optional (enum [ "on" "off" "try" ]); ident_file = default "" lines; + IntervalStyle = optional (enum [ "sql_standard" "postgres_verbose" "iso_8601" ]); join_collapse_limit = optional int; lc_messages = optional str; lc_monetary = optional str; @@ -183,6 +182,7 @@ in { temp_buffers = optional int; temp_file_limit = optional int; temp_tablespaces = optional str; + TimeZone = optional str; timezone_abbreviations = optional str; track_activities = optional bool; track_activity_query_size = optional int; |
