10 lines
144 B
Nix
10 lines
144 B
Nix
|
{ ... }: {
|
||
|
services.redis.servers.main = {
|
||
|
enable = true;
|
||
|
# port = cfg.port;
|
||
|
# extraParams = [
|
||
|
# "--protected-mode no"
|
||
|
# ];
|
||
|
};
|
||
|
}
|