9 lines
98 B
Nix
9 lines
98 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
config.services.redis = {
|
||
|
enable = true;
|
||
|
bind = "127.0.0.1";
|
||
|
};
|
||
|
}
|