mio-ops/profiles/forgejo.nix

122 lines
3.5 KiB
Nix
Raw Normal View History

# NixOps configuration for the hosts running Forgejo
2019-09-06 01:05:32 +00:00
{
2022-05-05 04:48:46 +00:00
config,
pkgs,
lib,
sources,
2022-05-05 04:48:46 +00:00
...
}: let
sources = import ../nix/sources.nix;
unstable = import sources.nixpkgsUnstable {};
in {
2019-09-06 01:05:32 +00:00
services.gitea = {
enable = true; # Enable Forgejo
appName = "mcwhirter.io: Forgejo Service"; # Give the site a name
2019-09-06 01:05:32 +00:00
database = {
2021-11-16 04:57:23 +00:00
type = "postgres"; # Database type
passwordFile = "/run/keys/gitea-dbpass"; # Where to find the password
2019-09-06 01:05:32 +00:00
};
2021-04-26 22:47:04 +00:00
disableRegistration = true;
2021-11-16 04:57:23 +00:00
domain = "source.mcwhirter.io"; # Domain name
rootUrl = "https://source.mcwhirter.io/"; # Root web URL
httpPort = 3002; # Provided unique port
package = pkgs.forgejo; # a soft fork of gitea
2021-01-21 01:35:44 +00:00
settings = let
docutils = pkgs.python39.withPackages (ps:
2021-11-16 04:57:23 +00:00
with ps; [
docutils # Provides rendering of ReStructured Text files
pygments # Provides syntax highlighting
]);
2021-01-21 01:35:44 +00:00
in {
mailer = {
ENABLED = true;
FROM = "gitea@mcwhirter.io";
};
2022-05-05 04:48:46 +00:00
repository = {DEFAULT_BRANCH = "consensus";};
service = {REGISTER_EMAIL_CONFIRM = true;};
2021-01-21 01:35:44 +00:00
"markup.restructuredtext" = {
ENABLED = true;
FILE_EXTENSIONS = ".rst";
RENDER_COMMAND = "${docutils}/bin/rst2html.py";
IS_INPUT_FILE = false;
};
2021-04-26 23:14:02 +00:00
ui = {
DEFAULT_THEME = "forgejo-auto"; # Set the default theme
THEMES = "forgejo-auto,forgejo-light,forgejo-dark,auto,arc-green,gitea";
2021-04-26 23:14:02 +00:00
};
2021-01-21 01:35:44 +00:00
};
2019-09-06 01:05:32 +00:00
};
systemd = {
services = {
gitea = {
# Ensure gitea starts after nixops keys are loaded
after = ["gitea-dbpass-key.service"];
wants = ["gitea-dbpass-key.service"];
};
};
};
2019-09-06 01:05:32 +00:00
services.postgresql = {
2021-11-16 04:57:23 +00:00
enable = true; # Ensure postgresql is enabled
2019-09-06 06:50:59 +00:00
authentication = ''
local gitea all ident map=gitea-users
'';
2022-05-05 04:48:46 +00:00
identMap =
# Map the gitea user to postgresql
2019-09-06 01:05:32 +00:00
''
gitea-users gitea gitea
'';
2022-05-05 04:48:46 +00:00
ensureDatabases = ["gitea"]; # Ensure the database persists
ensureUsers = [
{
name = "gitea"; # Ensure the database user persists
ensurePermissions = {
# Ensure the database permissions persist
"DATABASE gitea" = "ALL PRIVILEGES";
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
};
}
];
2019-09-06 01:05:32 +00:00
};
2022-06-22 22:50:22 +00:00
services.postgresqlBackup.databases = ["gitea"];
2019-09-06 01:05:32 +00:00
services.nginx = {
2021-11-16 04:57:23 +00:00
enable = true; # Enable Nginx
2019-09-06 01:05:32 +00:00
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
2022-05-05 04:48:46 +00:00
virtualHosts."source.mcwhirter.io" = {
# Forgejo hostname
2021-11-16 04:57:23 +00:00
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
locations."/".proxyPass = "http://localhost:3002/"; # Proxy Forgejo
2019-09-06 01:05:32 +00:00
};
2022-05-05 04:48:46 +00:00
virtualHosts."git.mcwhirter.io" = {
# Hostname to be redirected
2021-11-16 04:57:23 +00:00
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
globalRedirect = "source.mcwhirter.io"; # Redirect permanently to the host
2019-12-09 05:06:08 +00:00
};
2022-05-05 04:48:46 +00:00
virtualHosts."code.mcwhirter.io" = {
# Hostname to be redirected
2021-11-16 04:57:23 +00:00
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
globalRedirect = "source.mcwhirter.io"; # Redirect permanently to the host
2019-12-09 05:06:08 +00:00
};
2019-09-06 01:05:32 +00:00
};
security.acme = {
acceptTerms = true;
certs = {
2021-11-16 04:57:23 +00:00
"code.mcwhirter.io".email = "craige@mcwhirter.io";
"git.mcwhirter.io".email = "craige@mcwhirter.io";
2019-09-06 01:05:32 +00:00
"source.mcwhirter.io".email = "craige@mcwhirter.io";
};
2019-09-06 01:05:32 +00:00
};
2022-05-05 04:48:46 +00:00
users.groups.keys.members = ["gitea"]; # Required due to NixOps issue #1204
2019-09-06 01:05:32 +00:00
}