14 lines
257 B
Nix
14 lines
257 B
Nix
{ config, ... }:
|
|
{
|
|
services.redis = {
|
|
vmOverCommit = true;
|
|
servers."" = {
|
|
enable = true;
|
|
unixSocket = "/run/redis/redis.sock";
|
|
unixSocketPerm = 770;
|
|
#requirePassfile = config.secrets.files.redis_pass.file;
|
|
};
|
|
};
|
|
}
|
|
|