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