10 lines
136 B
Nix
10 lines
136 B
Nix
{pkgs, ...}: {
|
|
services.mysql = {
|
|
enable = true;
|
|
package = pkgs.mariadb;
|
|
};
|
|
|
|
services.redis = {
|
|
enable = true;
|
|
};
|
|
}
|