2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.services.discord_bot;
|
|
|
|
in {
|
2023-08-28 17:01:34 +00:00
|
|
|
imports = [
|
|
|
|
inputs.skynet_discord_bot.nixosModule."x86_64-linux"
|
|
|
|
];
|
|
|
|
|
|
|
|
options.services.discord_bot = {
|
|
|
|
enable = mkEnableOption "Skynet LDAP backend server";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
#backups = [ "/etc/silver_ul_ical/database.db" ];
|
|
|
|
|
2023-09-17 19:51:08 +00:00
|
|
|
age.secrets.discord_token.file = ../secrets/discord/token.age;
|
|
|
|
age.secrets.discord_ldap.file = ../secrets/discord/ldap.age;
|
|
|
|
age.secrets.discord_mail.file = ../secrets/email/details.age;
|
2023-10-27 02:01:23 +00:00
|
|
|
age.secrets.discord_wolves.file = ../secrets/wolves/details.age;
|
2023-08-28 17:01:34 +00:00
|
|
|
|
|
|
|
services.skynet_discord_bot = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
env = {
|
|
|
|
discord = config.age.secrets.discord_token.path;
|
2023-09-17 19:51:08 +00:00
|
|
|
ldap = config.age.secrets.discord_ldap.path;
|
|
|
|
mail = config.age.secrets.discord_mail.path;
|
2023-10-27 02:01:23 +00:00
|
|
|
wolves = config.age.secrets.discord_wolves.path;
|
2023-08-28 17:01:34 +00:00
|
|
|
};
|
|
|
|
|
2023-09-17 20:42:42 +00:00
|
|
|
discord.server = "689189992417067052";
|
2023-08-28 17:01:34 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|