Services/Gitea: Add git group for git user

This commit is contained in:
2025-07-09 02:57:59 +02:00
parent 2cd6aaea98
commit 4cc74f7590
+13 -9
View File
@@ -4,15 +4,19 @@
pkgs,
...
}: {
# Extra git user for Gitea
users.users.git = {
uid = 500;
group = "git";
isNormalUser = false;
isSystemUser = true;
description = "Gitea User";
extraGroups = ["docker" "podman"];
shell = pkgs.fish;
users = {
groups.git = {};
# Extra git user for Gitea
users.git = {
uid = 500;
group = "git";
isNormalUser = false;
isSystemUser = true;
description = "Gitea User";
extraGroups = ["docker" "podman"];
shell = pkgs.fish;
};
};
virtualisation.oci-containers.containers.gitea-db = {