forest/roles/iceshrimp.nix

11 lines
206 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
services.redis.servers.iceshrimp = {
enable = true;
port = 6380;
2024-07-07 23:11:06 +00:00
bind = "0.0.0.0";
settings.protected-mode = "no";
};
# TODO: move rest of iceshrimp to amy
}