47 lines
1.8 KiB
Nix
47 lines
1.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let domain = "stats.xyno.space";
|
|
in {
|
|
ragon.agenix.secrets."plausibleAdminPw" = { };
|
|
ragon.agenix.secrets."plausibleReleaseCookie" = { };
|
|
ragon.agenix.secrets."plausibleSecretKeybase" = { };
|
|
ragon.agenix.secrets."plausibleGoogleClientId" = { };
|
|
ragon.agenix.secrets."plausibleGoogleClientSecret" = { };
|
|
ragon.agenix.secrets."smtpPassword" = { };
|
|
systemd.services.plausible.serviceConfig.LoadCredential = [
|
|
"GOOGLE_CLIENT_ID:${config.age.secrets.plausibleGoogleClientId.path}"
|
|
"GOOGLE_CLIENT_SECRET:${config.age.secrets.plausibleGoogleClientSecret.path}"
|
|
];
|
|
systemd.services.plausible.environment = {
|
|
IP_GEOLOCATION_DB = "${pkgs.unstable.dbip-country-lite}/share/dbip/dbip-country-lite.mmdb";
|
|
};
|
|
services.plausible = {
|
|
enable = true;
|
|
package = pkgs.unstable.plausible;
|
|
# releaseCookiePath = config.age.secrets.plausibleSecretKeybase.path;
|
|
|
|
adminUser = {
|
|
# activate is used to skip the email verification of the admin-user that's
|
|
# automatically created by plausible. This is only supported if
|
|
# postgresql is configured by the module. This is done by default, but
|
|
# can be turned off with services.plausible.database.postgres.setup.
|
|
activate = true;
|
|
email = "plausible@xyno.space";
|
|
passwordFile = config.age.secrets.plausibleAdminPw.path;
|
|
};
|
|
|
|
server = {
|
|
baseUrl = "https://${domain}";
|
|
secretKeybaseFile = config.age.secrets.plausibleSecretKeybase.path;
|
|
};
|
|
mail.email = "machdas@xyno.space";
|
|
mail.smtp = {
|
|
user = "machdas@xyno.space";
|
|
passwordFile = config.age.secrets.smtpPassword.path;
|
|
hostAddr = "smtp.ionos.de";
|
|
hostPort = 465;
|
|
enableSSL = true;
|
|
};
|
|
};
|
|
|
|
ragon.persist.extraDirectories = [ "/var/lib/private/plausible" "/var/lib/clickhouse" ];
|
|
}
|