infra/config/services/geoipupdate.nix

16 lines
302 B
Nix
Raw Permalink Normal View History

2024-09-18 16:10:20 +02:00
{ config, ... }:
{
services.geoipupdate = {
enable = true;
settings = {
AccountID = 1062126;
LicenseKey = config.age.secrets."services/geoipupdate/license".path;
2024-09-18 16:10:20 +02:00
EditionIDs = [
"GeoLite2-ASN"
"GeoLite2-City"
"GeoLite2-Country"
];
};
};
}