This commit is contained in:
2025-12-18 08:29:41 +00:00
parent f8c3d356d5
commit 46147bbcc1

View File

@@ -1,4 +1,4 @@
{...}: { {lib, ...}: {
networking.firewall.allowedTCPPorts = [80 443]; networking.firewall.allowedTCPPorts = [80 443];
services.gitea = { services.gitea = {
@@ -47,8 +47,8 @@
systemd.services.litestream = { systemd.services.litestream = {
serviceConfig = { serviceConfig = {
User = "gitea"; User = lib.mkForce "gitea";
Group = "gitea"; Group = lib.mkForce "gitea";
}; };
}; };