gitea: Use a defined service UID

The default of 1000 mapped to my admin user, which was both a bit
concerning and a bit of an annoyance.
pull/36/head
Tristan Daniël Maat 2021-04-28 23:02:27 +01:00
parent 0a20fc3cd5
commit 9e06fcf917
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,16 @@
{ config, ... }:
{
users = {
extraUsers.gitea = {
uid = config.ids.uids.git;
isSystemUser = true;
description = "Gitea Service";
group = config.users.extraGroups.gitea.name;
};
extraGroups.gitea = { gid = config.ids.gids.git; };
};
virtualisation.pods.gitea = {
hostname = "gitea.tlater.net";
publish = [ "3000:3000" "2221:2221" ];
@ -18,6 +28,9 @@
DB_USER = "gitea";
DB_PASSWD = "/qNDDK9WCMuubfA7D8DFwfl9T+Gy2IMDvPhiNpcxZjY=";
USER_UID = toString config.users.extraUsers.gitea.uid;
USER_GID = toString config.users.extraGroups.gitea.gid;
RUN_MODE = "prod";
DOMAIN = "gitea.tlater.net";
SSH_PORT = "2221";