summaryrefslogtreecommitdiffstats
path: root/lass/2configs/redis.nix
blob: 8dd8df5c36a3cad0c1d6f5d431d6636ac1c96861 (plain)
1
2
3
4
5
6
7
8
{ config, ... }:

{
  config.services.redis = {
    enable = true;
    bind = "127.0.0.1";
  };
}