nixos-config/modules/services/dmz/hydra.nix
2024-05-05 19:39:35 +02:00

13 lines
221 B
Nix

{ lib, config, pkgs, ... }:
{
services.hydra = {
enable = true;
port = true;
hydraURL = "http://localhost:3000";
notificationSender = "hydra@localhost";
useSubstitutes = true;
};
}