add secret, delete hydra module

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-04-20 14:35:32 -04:00
committed by Alice Huston
parent d706134f77
commit a2a339c174
3 changed files with 14 additions and 21 deletions

View File

@ -1,19 +0,0 @@
{ config, lib, ... }:
let
cfg = config.services.hydra;
in
{
config = {
services.hydra.extraConfig = lib.mkDefault (
lib.concatLines [
cfg.extraConfig
''
<git-input>
timeout = 3600
</git-input>
''
]
);
};
}