snowflake/hosts/yuki/services/botoh.nix
notohh 84e7c4bb1e
Some checks failed
ci/woodpecker/cron/flake-lock-update Pipeline failed
yuki: add botoh
2024-06-16 09:02:00 -04:00

12 lines
236 B
Nix

{inputs, ...}: {
imports = [inputs.botoh.nixosModules.default];
sops.secrets = {
twitch_auth = {};
};
services.botoh = {
enable = true;
log_level = "info";
environmentFiles = ["/run/secrets/twitch_auth"];
};
}