nix-dotfiles/modules/hydra.nix

18 lines
263 B
Nix
Raw Normal View History

2024-02-01 05:24:04 +01:00
{ config, lib, ... }:
let
cfg = config.services.hydra;
in
{
config = {
services.hydra.extraConfig = lib.mkDefault (lib.concatLines [
cfg.extraConfig
''
<git-input>
timeout = 3600
</git-input>
''
]);
};
}