From 55ccb61fb33d9b8e5c004b1269ed5d7a0f5d4202 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Wed, 20 Mar 2024 14:55:48 -0500 Subject: [PATCH] fix: update nix module systemd after Signed-off-by: jolheiser --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index efce2bf..b4cf20f 100644 --- a/flake.nix +++ b/flake.nix @@ -149,7 +149,7 @@ args = ["--config=${configFile}" "--repo-dir=${cfg.repoDir}" "--ssh.authorized-keys=${authorizedKeysPath}" "--ssh.host-key=${cfg.hostKeyFile}"] ++ lib.optionals cfg.debug ["--debug"]; in "${cfg.package}/bin/ugitd ${builtins.concatStringsSep " " args}"; wantedBy = ["multi-user.target"]; - after = ["network-online.target"]; + after = ["network.target"]; path = [cfg.package pkgs.git pkgs.bash]; serviceConfig = { User = cfg.user;