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

15 lines
409 B
Nix
Raw Normal View History

2022-09-22 00:51:00 +02:00
{ pkgs, unstable-pkgs, secrets, ... }:
2022-03-07 16:01:52 +01:00
{
2022-06-22 20:16:57 +02:00
# Follow instructions for setup:
# https://gist.github.com/joepie91/c26f01a787af87a96f967219234a8723
2022-03-07 16:01:52 +01:00
services.hydra = {
enable = true;
hydraURL = "https://hydra.nani.wtf";
2022-03-07 16:01:52 +01:00
notificationSender = "hydra@nani.wtf";
2022-06-22 20:16:57 +02:00
useSubstitutes = true;
2022-09-22 00:51:00 +02:00
package = unstable-pkgs.hydra_unstable;
2022-03-07 16:01:52 +01:00
port = secrets.ports.hydra;
2022-09-22 00:51:00 +02:00
buildMachinesFiles = [];
2022-03-07 16:01:52 +01:00
};
}