From 9f14d819d2b31adc23ed225e1b699735082dda0b Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 18 Jun 2023 17:44:35 -0400 Subject: [PATCH] arashi: init redis --- hosts/arashi/services/default.nix | 1 + hosts/arashi/services/redis.nix | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/hosts/arashi/services/default.nix b/hosts/arashi/services/default.nix index b9eafe2..f3c8b4a 100644 --- a/hosts/arashi/services/default.nix +++ b/hosts/arashi/services/default.nix @@ -1,5 +1,6 @@ _: { imports = [ ./postgresql.nix + ./redis.nix ]; } diff --git a/hosts/arashi/services/redis.nix b/hosts/arashi/services/redis.nix index e69de29..91f3431 100644 --- a/hosts/arashi/services/redis.nix +++ b/hosts/arashi/services/redis.nix @@ -0,0 +1,5 @@ +{...}: { + services.redis.servers.default = { + enable = true; + }; +}