mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-26 07:43:45 +01:00
26 lines
336 B
Nix
26 lines
336 B
Nix
{ pkgs, config, lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
services = {
|
|
prometheus = {
|
|
exporters = {
|
|
redis = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
redis = {
|
|
vmOverCommit = true;
|
|
|
|
servers = {
|
|
nextcloud = {
|
|
port = 6379;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|