summaryrefslogtreecommitdiff
path: root/systems/atlas/teawiebot.nix
blob: 8f6d560506414f4cfb588a8ca2d3d879f0b212c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  secretsDir,
  inputs,
  ...
}:
{
  imports = [ inputs.teawiebot.nixosModules.default ];

  age.secrets.teawiebot.file = secretsDir + "/teawieBot.age";

  services.teawiebot = {
    enable = true;
    environmentFile = config.age.secrets.teawiebot.path;
  };
}