8 lines
200 B
Nix
8 lines
200 B
Nix
{config, ...}: {
|
|
services.prometheus.exporters.json = {
|
|
enable = true;
|
|
configFile = config.sops.secrets.jellyfin-exporter-config.path;
|
|
openFirewall = true;
|
|
user = "jellyfin";
|
|
};
|
|
}
|