eve-psr-nix0/system/services.nix

23 lines
427 B
Nix
Raw Normal View History

2023-06-26 16:30:36 -05:00
{ ... }: {
2023-06-26 16:19:14 -05:00
services = {
2023-06-26 16:30:36 -05:00
openssh = { enable = true; };
2023-06-26 16:19:14 -05:00
hydra = {
enable = true;
hydraURL = "https://hydra.matri.cx";
listenHost = "192.168.0.130";
port = 3034;
extraConfig = ''
using_frontend_proxy = 1
base_uri = "https://hydra.matri.cx"
'';
useSubstitutes = true;
notificationSender = "hydra@matri.cx";
buildMachinesFiles = [ ];
};
};
}