From 46147bbcc16962f7a659bf2b9371546cfc987717 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Thu, 18 Dec 2025 08:29:41 +0000 Subject: [PATCH] fix --- profiles/gitea.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/gitea.nix b/profiles/gitea.nix index b85240d..da192c2 100644 --- a/profiles/gitea.nix +++ b/profiles/gitea.nix @@ -1,4 +1,4 @@ -{...}: { +{lib, ...}: { networking.firewall.allowedTCPPorts = [80 443]; services.gitea = { @@ -47,8 +47,8 @@ systemd.services.litestream = { serviceConfig = { - User = "gitea"; - Group = "gitea"; + User = lib.mkForce "gitea"; + Group = lib.mkForce "gitea"; }; };