summary refs log tree commit diff
path: root/nixos/modules/services/databases/hbase.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/databases/hbase.nix')
-rw-r--r--nixos/modules/services/databases/hbase.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/databases/hbase.nix b/nixos/modules/services/databases/hbase.nix
index 589c8cf5ec8..2d1a47bbaa3 100644
--- a/nixos/modules/services/databases/hbase.nix
+++ b/nixos/modules/services/databases/hbase.nix
@@ -53,7 +53,7 @@ in {
 
 
       user = mkOption {
-        type = types.string;
+        type = types.str;
         default = "hbase";
         description = ''
           User account under which HBase runs.
@@ -61,7 +61,7 @@ in {
       };
 
       group = mkOption {
-        type = types.string;
+        type = types.str;
         default = "hbase";
         description = ''
           Group account under which HBase runs.