1
0
Fork 0
nixos/services/gitea.nix

39 lines
789 B
Nix
Raw Normal View History

{ config, lib, ... }:
2019-02-26 13:44:40 +01:00
with lib;
mkIf (elem "gitea" config.machine.services) {
2019-02-26 13:44:40 +01:00
services.gitea = {
enable = true;
user = "git";
cookieSecure = true;
domain = "git.${config.machine.domain}";
rootUrl = "http://git.${config.machine.domain}/";
2019-02-26 13:44:40 +01:00
database = {
type = "mysql";
user = "git";
name = "gitea";
passwordFile = "/secret/gitea";
};
extraConfig = ''
[repository]
DISABLE_HTTP_GIT = false
2019-02-26 13:44:40 +01:00
USE_COMPAT_SSH_URI = true
[security]
INSTALL_LOCK = true
COOKIE_USERNAME = gitea_username
COOKIE_REMEMBER_NAME = gitea_userauth
[service]
DISABLE_REGISTRATION = true
'';
};
users.users.git = {
isNormalUser = true;
home = "/var/lib/gitea";
createHome = true;
};
}