1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-26 07:43:45 +01:00
github.com-tboerger-nixos-c.../shared/services/cloud/redis.nix
2024-07-17 16:05:33 +02:00

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;
};
};
};
};
}