config/hosts/pluto/services/pterodactyl.nix

11 lines
136 B
Nix
Raw Normal View History

2024-05-03 16:28:54 -04:00
{pkgs, ...}: {
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services.redis = {
enable = true;
};
}