summaryrefslogtreecommitdiff
path: root/modules/services/postgresql/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-08-31 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-08-31 04:20:00 -0500
commit2807a31f95f3c4b399839dffe056c63bb7b3ae2f (patch)
tree1c662d26388388fdc86c33bf4eed4218c6e3c649 /modules/services/postgresql/default.nix
parentef3d6e4354d029c7ef6f614654e48e9656e077f8 (diff)
modules: remove usages of types.string
Diffstat (limited to 'modules/services/postgresql/default.nix')
-rw-r--r--modules/services/postgresql/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/postgresql/default.nix b/modules/services/postgresql/default.nix
index 35a4aed..a17ef3b 100644
--- a/modules/services/postgresql/default.nix
+++ b/modules/services/postgresql/default.nix
@@ -62,7 +62,7 @@ in
};
characterSet = mkOption {
- type = types.string;
+ type = types.str;
default = "UTF8";
example = "SJIS";
description = ''Character set specified during initialization'';