Add hydra
This commit is contained in:
parent
2ccaadd557
commit
7ba4a8992c
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./services/gitea.nix
|
||||
./services/hydra.nix
|
||||
./services/minecraft.nix
|
||||
./services/nextcloud.nix
|
||||
./services/webserver.nix
|
||||
|
@ -66,6 +67,7 @@
|
|||
"tlater.net" = host 3002 { serverAliases = [ "www.tlater.net" ]; };
|
||||
"gitea.tlater.net" = host 3000 { };
|
||||
"nextcloud.tlater.net" = host 3001 { };
|
||||
"hydra.tlater.net" = host config.services.hydra.port { };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
11
configuration/services/hydra.nix
Normal file
11
configuration/services/hydra.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
services.hydra = {
|
||||
enable = true;
|
||||
port = 3003;
|
||||
|
||||
hydraURL = "hydra.tlater.net";
|
||||
notificationSender = "hydra@tlater.net";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue