mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-26 07:43:45 +01:00
22 lines
307 B
Nix
22 lines
307 B
Nix
{ pkgs, config, lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
services = {
|
|
prometheus = {
|
|
exporters = {
|
|
exportarr-lidarr = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
lidarr = {
|
|
enable = true;
|
|
user = "media";
|
|
group = "users";
|
|
dataDir = "/var/lib/lidarr";
|
|
};
|
|
};
|
|
}
|