feat(discord/marty): adding marty to the configuration
This commit is contained in:
parent
efc4d193fd
commit
dc68443661
3 changed files with 57 additions and 0 deletions
|
|
@ -16,6 +16,9 @@ let
|
|||
bde_bot = import ./bot_discord/bde.nix {
|
||||
inherit config pkgs lib;
|
||||
};
|
||||
marty_bot = import ./bot_discord/marty.nix {
|
||||
inherit config pkgs lib;
|
||||
};
|
||||
ticket_bot = import ./bot_discord/ticket.nix {
|
||||
inherit config pkgs lib;
|
||||
};
|
||||
|
|
@ -29,6 +32,7 @@ in
|
|||
music_bot
|
||||
tempvoc_bot
|
||||
ticket_bot
|
||||
marty_bot
|
||||
];
|
||||
|
||||
options.service.bot_discord = {
|
||||
|
|
@ -47,6 +51,11 @@ in
|
|||
default = false;
|
||||
description = "Enable bde bot";
|
||||
};
|
||||
marty = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable marty bot";
|
||||
};
|
||||
music = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue