arashi: init redis

This commit is contained in:
notohh 2023-06-18 17:44:35 -04:00
parent 5ff136309b
commit 9f14d819d2
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,6 @@
_: {
imports = [
./postgresql.nix
./redis.nix
];
}

View file

@ -0,0 +1,5 @@
{...}: {
services.redis.servers.default = {
enable = true;
};
}