Enable hydra

This commit is contained in:
2025-02-27 15:27:51 +01:00
parent 3387cbcc25
commit e49f6e0100
3 changed files with 25 additions and 0 deletions

13
m/hut/hydra.nix Normal file
View File

@@ -0,0 +1,13 @@
{ config, lib, ... }:
{
services.hydra = {
enable = true;
hydraURL = "http://jungle.bsc.es/hydra"; # externally visible URL
notificationSender = "hydra@jungle.bsc.es"; # e-mail of Hydra service
port = 3001;
# a standalone Hydra will require you to unset the buildMachinesFiles list to avoid using a nonexistant /etc/nix/machines
buildMachinesFiles = [];
# you will probably also want, otherwise *everything* will be built from scratch
useSubstitutes = true;
};
}