disable forgejo restart on update

This commit is contained in:
Satria 2026-03-29 09:46:51 +07:00
commit 6c96c4ca0f

View file

@ -48,5 +48,8 @@
hostPackages = with pkgs; [ bash coreutils git nix openssh nodejs ]; hostPackages = with pkgs; [ bash coreutils git nix openssh nodejs ];
}; };
}; };
systemd.services."gitea-runner-nixos-deploy".restartIfChanged = false; systemd.services = {
"gitea-runner-nixos-deploy".restartIfChanged = false;
"forgejo".restartIfChanged = false;
};
} }