From ceb0be75808b214f4c2eea79459df74549529175 Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Sat, 21 Aug 2021 11:10:17 -0400 Subject: [PATCH] fix references --- common/server/drastikbot.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/common/server/drastikbot.nix b/common/server/drastikbot.nix index aba1ec3..687c597 100644 --- a/common/server/drastikbot.nix +++ b/common/server/drastikbot.nix @@ -44,22 +44,22 @@ let in { options.services.drastikbot = { enable = lib.mkEnableOption "enable drastikbot"; - user = mkOption { - type = types.str; + user = lib.mkOption { + type = lib.types.str; default = "drastikbot"; description = '' The user drastikbot should run as ''; }; - group = mkOption { - type = types.str; + group = lib.mkOption { + type = lib.types.str; default = "drastikbot"; description = '' The group drastikbot should run as ''; }; - dataDir = mkOption { - type = types.str; + dataDir = lib.mkOption { + type = lib.types.str; default = "/var/lib/drastikbot"; description = '' Path to the drastikbot data directory