diff options
-rw-r--r-- | nix/hosts/corrino/www/git.emile.space.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/hosts/corrino/www/git.emile.space.nix b/nix/hosts/corrino/www/git.emile.space.nix index f05c83d..2d3dca7 100644 --- a/nix/hosts/corrino/www/git.emile.space.nix +++ b/nix/hosts/corrino/www/git.emile.space.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: +{ lib, pkgs, config, ... }: let cfg = config.services.gitea; @@ -166,6 +166,7 @@ in { group = "git"; extraGroups = [ "gitea" ]; home = cfg.stateDir; + uid = 127; }; users.groups.git = { }; } |