fix references

This commit is contained in:
zuckerberg 2021-08-21 11:10:17 -04:00
parent 45f56e4581
commit ceb0be7580

View File

@ -44,22 +44,22 @@ let
in { in {
options.services.drastikbot = { options.services.drastikbot = {
enable = lib.mkEnableOption "enable drastikbot"; enable = lib.mkEnableOption "enable drastikbot";
user = mkOption { user = lib.mkOption {
type = types.str; type = lib.types.str;
default = "drastikbot"; default = "drastikbot";
description = '' description = ''
The user drastikbot should run as The user drastikbot should run as
''; '';
}; };
group = mkOption { group = lib.mkOption {
type = types.str; type = lib.types.str;
default = "drastikbot"; default = "drastikbot";
description = '' description = ''
The group drastikbot should run as The group drastikbot should run as
''; '';
}; };
dataDir = mkOption { dataDir = lib.mkOption {
type = types.str; type = lib.types.str;
default = "/var/lib/drastikbot"; default = "/var/lib/drastikbot";
description = '' description = ''
Path to the drastikbot data directory Path to the drastikbot data directory