nix/host/x86_64-linux/home/Redis.nix

10 lines
144 B
Nix
Raw Normal View History

2024-12-02 21:12:45 +03:00
{ ... }: {
services.redis.servers.main = {
enable = true;
# port = cfg.port;
# extraParams = [
# "--protected-mode no"
# ];
};
}