config/hosts/pluto/services/pterodactyl.nix
2024-05-03 16:28:54 -04:00

10 lines
136 B
Nix

{pkgs, ...}: {
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services.redis = {
enable = true;
};
}