Changed source to a local copy
This commit is contained in:
parent
ab068da79d
commit
bc76add6d3
|
@ -3,6 +3,11 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
disabledModules = [ "services/continuous-integration/hydra/default.nix" ];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
/home/craige/git/NixOS/hydra/hydra-module.nix
|
||||||
|
];
|
||||||
|
|
||||||
services.postfix = {
|
services.postfix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -22,10 +27,11 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ config.services.hydra.port ];
|
networking.firewall.allowedTCPPorts = [ config.services.hydra-dev.port ];
|
||||||
|
|
||||||
services.hydra = {
|
services.hydra-dev = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.callPackage ./hydra-dev.nix {}; # Remove to use stable Hydra
|
||||||
useSubstitutes = true;
|
useSubstitutes = true;
|
||||||
hydraURL = "https://hydra.mcwhirter.io";
|
hydraURL = "https://hydra.mcwhirter.io";
|
||||||
notificationSender = "hydra.mcwhirter.io";
|
notificationSender = "hydra.mcwhirter.io";
|
||||||
|
|
Loading…
Reference in a new issue