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; + }; +}