nixos/applications/discord.nix

39 lines
865 B
Nix
Raw Normal View History

{
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" ];
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-08-28 17:01:34 +00:00
services.skynet_discord_bot = {
enable = true;
env = {
discord = config.age.secrets.discord_token.path;
ldap = config.age.secrets.discord_ldap.path;
mail = config.age.secrets.discord_mail.path;
2023-08-28 17:01:34 +00:00
};
discord.server = "689189992417067052";
2023-08-28 17:01:34 +00:00
};
};
}