summaryrefslogtreecommitdiffstats
path: root/usecases
diff options
context:
space:
mode:
Diffstat (limited to 'usecases')
-rw-r--r--usecases/server/hydra-server.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/usecases/server/hydra-server.nix b/usecases/server/hydra-server.nix
index db09a6e..28fb457 100644
--- a/usecases/server/hydra-server.nix
+++ b/usecases/server/hydra-server.nix
@@ -15,8 +15,8 @@ inputs:
15 config = { 15 config = {
16 services.hydra = { 16 services.hydra = {
17 enable = true; 17 enable = true;
18 hydraURL = "https://hydra.${config.networking.fqdn}"; 18 hydraURL = lib.mkDefault "https://hydra.${config.networking.fqdn}";
19 notificationSender = "hydra@${config.networking.fqdn}"; 19 notificationSender = lib.mkDefault "hydra@${config.networking.fqdn}";
20 buildMachinesFiles = [ ]; 20 buildMachinesFiles = [ ];
21 # Don't build *everything* from source 21 # Don't build *everything* from source
22 useSubstitutes = true; 22 useSubstitutes = true;