aboutsummaryrefslogtreecommitdiff
path: root/modules/apps/postgresql
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apps/postgresql')
-rw-r--r--modules/apps/postgresql/default.nix2
-rw-r--r--modules/apps/postgresql/server.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/apps/postgresql/default.nix b/modules/apps/postgresql/default.nix
index f479e86..9d05b2d 100644
--- a/modules/apps/postgresql/default.nix
+++ b/modules/apps/postgresql/default.nix
@@ -2,7 +2,7 @@
let
inherit (builtins)
- match toString ;
+ match ;
inherit (lib)
concatMapStrings concatStringsSep filterAttrs foldAttrs filter foldl
diff --git a/modules/apps/postgresql/server.nix b/modules/apps/postgresql/server.nix
index 864af5c..30488db 100644
--- a/modules/apps/postgresql/server.nix
+++ b/modules/apps/postgresql/server.nix
@@ -4,7 +4,7 @@ let
inherit (lib) mkOption mkOptionType mkIf types isInt isString
all length splitString stringToCharacters filter;
inherit (types) either enum attrsOf nullOr listOf str path lines int bool;
- inherit (builtins) toString match;
+ inherit (builtins) match;
default = d: t: mkOption { type = t; default = d; };
mandatory = t: mkOption { type = t; };