snowflake/hosts/yuki/services/botoh.nix

12 lines
236 B
Nix
Raw Normal View History

2024-06-16 09:02:00 -04:00
{inputs, ...}: {
imports = [inputs.botoh.nixosModules.default];
sops.secrets = {
twitch_auth = {};
};
services.botoh = {
enable = true;
log_level = "info";
environmentFiles = ["/run/secrets/twitch_auth"];
};
}