nix-dotfiles/hosts/tsuki/services/hydra.nix

10 lines
182 B
Nix
Raw Normal View History

2022-03-07 16:01:52 +01:00
{ secrets, ... }:
{
services.hydra = {
enable = true;
hydraURL = "http://hydra.nani.wtf";
notificationSender = "hydra@nani.wtf";
port = secrets.ports.hydra;
};
}