nixos-config/modules/services/dmz/hydra.nix

13 lines
221 B
Nix
Raw Normal View History

2024-05-05 19:39:35 +02:00
{ lib, config, pkgs, ... }:
{
services.hydra = {
enable = true;
port = true;
hydraURL = "http://localhost:3000";
notificationSender = "hydra@localhost";
useSubstitutes = true;
};
}