mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-06 21:17:14 -06:00
221 lines
5.8 KiB
Nix
221 lines
5.8 KiB
Nix
{
|
|
config,
|
|
flake,
|
|
...
|
|
}:
|
|
let
|
|
inherit (flake.config.people) user0;
|
|
inherit (flake.config.services) instances;
|
|
serviceCfg = flake.config.services.instances.forgejo;
|
|
smtpCfg = flake.config.services.instances.smtp;
|
|
hostCfg = flake.config.services.instances.web;
|
|
host = serviceCfg.domains.url0;
|
|
dns0 = instances.web.dns.provider0;
|
|
dns0Path = "dns/${dns0}";
|
|
hostSecrets = "/opt/secrets";
|
|
in
|
|
{
|
|
users.users.caddy.extraGroups = [ "acme" ];
|
|
|
|
security.acme.certs."${host}" = {
|
|
dnsProvider = dns0;
|
|
environmentFile = config.sops.secrets.${dns0Path}.path;
|
|
group = "caddy";
|
|
};
|
|
|
|
microvm.vms.forgejo = {
|
|
autostart = true;
|
|
restartIfChanged = true;
|
|
config = {
|
|
system.stateVersion = "24.05";
|
|
time.timeZone = "America/Winnipeg";
|
|
users.users.root.openssh.authorizedKeys.keys = flake.config.people.users.${user0}.sshKeys;
|
|
services = {
|
|
forgejo = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
database = {
|
|
type = "postgres";
|
|
};
|
|
secrets = {
|
|
mailer.PASSWD = "/run/secrets/smtp";
|
|
database.PASSWD = "/run/secrets/database";
|
|
};
|
|
settings = {
|
|
server = {
|
|
DOMAIN = host;
|
|
ROOT_URL = "https://${host}/";
|
|
HTTP_PORT = serviceCfg.ports.port0;
|
|
};
|
|
# If you need to start from scratch, don't forget to turn this off again
|
|
service.DISABLE_REGISTRATION = false;
|
|
actions = {
|
|
ENABLED = true;
|
|
DEFAULT_ACTIONS_URL = "github";
|
|
};
|
|
mirror = {
|
|
ENABLED = true;
|
|
};
|
|
mailer = {
|
|
ENABLED = true;
|
|
SMTP_ADDR = smtpCfg.hostname;
|
|
FROM = smtpCfg.email.address1;
|
|
USER = smtpCfg.email.address1;
|
|
PROTOCOL = "${smtpCfg.name}+${smtpCfg.records.record1}";
|
|
SMTP_PORT = smtpCfg.ports.port1;
|
|
SEND_AS_PLAIN_TEXT = true;
|
|
USE_CLIENT_CERT = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
PermitRootLogin = "prohibit-password";
|
|
};
|
|
};
|
|
|
|
postgresql = {
|
|
enable = true;
|
|
ensureDatabases = [ serviceCfg.name ];
|
|
ensureUsers = [
|
|
{
|
|
name = serviceCfg.name;
|
|
ensureDBOwnership = true;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
22 # SSH
|
|
25 # SMTP
|
|
139 # SMTP
|
|
587 # SMTP
|
|
2525 # SMTP
|
|
serviceCfg.ports.port0
|
|
];
|
|
|
|
fileSystems."/tmp" = {
|
|
device = "tmpfs";
|
|
fsType = "tmpfs";
|
|
options = [
|
|
"size=4G"
|
|
"mode=1777"
|
|
];
|
|
};
|
|
|
|
systemd = {
|
|
network = {
|
|
enable = true;
|
|
networks."20-lan" = {
|
|
matchConfig.Name = "enp0s5";
|
|
addresses = [ { Address = "${serviceCfg.interface.ip}/24"; } ];
|
|
routes = [
|
|
{
|
|
Destination = "${hostCfg.localhost.address1}/0";
|
|
Gateway = serviceCfg.interface.gate;
|
|
}
|
|
];
|
|
dns = [
|
|
"1.1.1.1"
|
|
"8.8.8.8"
|
|
];
|
|
};
|
|
};
|
|
|
|
tmpfiles.rules = [
|
|
"Z ${serviceCfg.varPaths.path0} 0755 ${serviceCfg.name} ${serviceCfg.name} -"
|
|
"Z ${serviceCfg.secretPaths.path0} 0755 ${serviceCfg.name} ${serviceCfg.name} -"
|
|
"Z /var/lib/postgresql 0755 postgres postgres -"
|
|
];
|
|
};
|
|
|
|
systemd.services.systemd-networkd.wantedBy = [ "multi-user.target" ];
|
|
|
|
microvm = {
|
|
vcpu = 2;
|
|
mem = 3072;
|
|
hypervisor = "qemu";
|
|
interfaces = [
|
|
{
|
|
type = "tap";
|
|
id = serviceCfg.interface.id;
|
|
mac = serviceCfg.interface.mac;
|
|
}
|
|
{
|
|
type = "user";
|
|
id = serviceCfg.interface.idUser;
|
|
mac = serviceCfg.interface.macUser;
|
|
}
|
|
];
|
|
forwardPorts = [
|
|
{
|
|
from = "host";
|
|
host.port = serviceCfg.interface.ssh;
|
|
guest.port = 22;
|
|
}
|
|
];
|
|
shares = [
|
|
{
|
|
mountPoint = "/nix/.ro-store";
|
|
proto = "virtiofs";
|
|
source = "/nix/store";
|
|
tag = "read_only_nix_store";
|
|
}
|
|
{
|
|
mountPoint = "/var/lib/${serviceCfg.name}";
|
|
proto = "virtiofs";
|
|
source = "${serviceCfg.mntPaths.path0}/data";
|
|
tag = "${serviceCfg.name}_data";
|
|
}
|
|
{
|
|
mountPoint = "/var/lib/postgresql";
|
|
proto = "virtiofs";
|
|
source = "${serviceCfg.mntPaths.path0}/database";
|
|
tag = "${serviceCfg.name}_database";
|
|
}
|
|
{
|
|
mountPoint = "/run/secrets";
|
|
proto = "virtiofs";
|
|
source = "${hostSecrets}/${serviceCfg.name}";
|
|
tag = "host_secrets";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"d ${serviceCfg.mntPaths.path0}/data 0751 microvm wheel - -"
|
|
"d ${serviceCfg.mntPaths.path0}/database 0751 microvm wheel - -"
|
|
|
|
];
|
|
|
|
services.caddy.virtualHosts."${host}" = {
|
|
extraConfig = ''
|
|
reverse_proxy ${serviceCfg.interface.ip}:${toString serviceCfg.ports.port0} {
|
|
header_up X-Real-IP {remote_host}
|
|
}
|
|
|
|
tls ${serviceCfg.ssl.cert} ${serviceCfg.ssl.key}
|
|
|
|
encode zstd gzip
|
|
'';
|
|
};
|
|
|
|
sops.secrets = {
|
|
"${serviceCfg.name}/smtp" = {
|
|
path = hostSecrets;
|
|
owner = "root";
|
|
mode = "0600";
|
|
};
|
|
"${serviceCfg.name}/database" = {
|
|
path = hostSecrets;
|
|
owner = "root";
|
|
mode = "0600";
|
|
};
|
|
};
|
|
}
|