summaryrefslogtreecommitdiff
path: root/roles/git-server.nix
blob: aea0b1824e15984748207cf4135e244e343d53a8 (plain)
1
2
3
4
5
6
7
8
9
{ ... }:
{
  users.users.git.isNormalUser = true;
  services.openssh.AllowUsers = [ "git" ];
  services.gitea = {
    enable = true;
    appName = "JAP56 Git Server";
  };
}