diff --git a/packages/bookwyrm/nixos-module.nix b/packages/bookwyrm/nixos-module.nix index 4b97889..9754c19 100644 --- a/packages/bookwyrm/nixos-module.nix +++ b/packages/bookwyrm/nixos-module.nix @@ -66,7 +66,6 @@ with pkgs . kernelmaft ; services = { postgresql = { - enable = true ; ensureUsers = [ { name = "bookwyrm" ; @@ -75,5 +74,13 @@ with pkgs . kernelmaft ; ] ; ensureDatabases = [ "bookwyrm" ] ; } ; + + redis = { + servers = { + bookwyrm = { + enable = true ; + } ; + } ; + } ; } ; }