From 54bb3cb054ad41db948f068ba76bbca3a4068197 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Sun, 7 Dec 2025 19:54:46 -0800 Subject: [PATCH] No auto-start --- modules/system/git-auto-rebuild.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/system/git-auto-rebuild.nix b/modules/system/git-auto-rebuild.nix index 5f4d38a..ac71d57 100644 --- a/modules/system/git-auto-rebuild.nix +++ b/modules/system/git-auto-rebuild.nix @@ -1,9 +1,8 @@ { config, pkgs, ... }: { systemd.services.git-auto-rebuild = { -# enable = true; + enable = true; after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; description = "Rebuilds the git repo at /etc/nixos if there are changes in the currently checked out branch"; # startAt = "*:0/1"; serviceConfig = {