Feature/rfc 0166 fmt (#113)

* change formatter to nixfmt-rfc-style

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>

* Add rfc-style fmt'ing

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>

---------

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-03-03 18:06:28 -05:00
committed by GitHub
parent e732499201
commit 1a8a2fa394
19 changed files with 492 additions and 264 deletions

View File

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