12 lines
202 B
Nix
12 lines
202 B
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.hydra = {
|
||
|
enable = true;
|
||
|
hydraURL = "http://localhost:3000";
|
||
|
notificationSender = "hydra@localhost";
|
||
|
useSubstitutes = true;
|
||
|
};
|
||
|
|
||
|
}
|