From 128f444d696d63a1ac5d56216158021615d20b7e Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Tue, 27 Jun 2023 17:01:14 -0400 Subject: [PATCH] Fix config formatting --- nixos-apps/git.ewanick.com.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/nixos-apps/git.ewanick.com.nix b/nixos-apps/git.ewanick.com.nix index 9e46524..ef5cacf 100644 --- a/nixos-apps/git.ewanick.com.nix +++ b/nixos-apps/git.ewanick.com.nix @@ -12,13 +12,11 @@ DISABLE_REGISTRATION = true; }; - git = { - timeout = { - MIGRATE = 60 * 100; # seconds, 100 minutes - MIRROR = 60 * 100; - PULL = 60 * 100; - GC = 60 * 100; - }; + "git.timeout" = { + MIGRATE = 60 * 100; # seconds, 100 minutes + MIRROR = 60 * 100; + PULL = 60 * 100; + GC = 60 * 100; }; }; };