Compare commits

...

2 Commits

Author SHA1 Message Date
uttarayan21
fd5166d82b fix(minecraft): disable server by default in configuration
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m25s
2025-10-13 03:49:22 +05:30
uttarayan21
83c32cb29c feat(gitea): add systemd unit for gitea-actions-mirai service 2025-10-13 03:49:22 +05:30
2 changed files with 4 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
in { in {
minecraft-server = { minecraft-server = {
inherit whitelist; inherit whitelist;
enable = true; enable = false;
openFirewall = true; openFirewall = true;
eula = true; eula = true;
declarative = true; declarative = true;

View File

@@ -148,6 +148,9 @@
systemd.services.gitea = { systemd.services.gitea = {
after = ["sops-install-secrets.service"]; after = ["sops-install-secrets.service"];
}; };
systemd.services."gitea-actions-mirai" = {
after = ["gitea.service"];
};
# systemd.services.gitea-oauth-setup = let # systemd.services.gitea-oauth-setup = let
# name = "authelia"; # name = "authelia";