nix/host/x86_64-linux/home/Redis.nix

11 lines
157 B
Nix
Raw Normal View History

{ ... }:
{
services.redis.servers.main = {
enable = true;
# port = cfg.port;
# extraParams = [
# "--protected-mode no"
# ];
};
2024-12-02 21:12:45 +03:00
}