Enable planetscale utilities
diff --git a/modules/hosting.nix b/modules/hosting.nix
new file mode 100644
index 0000000..d9d69ad
--- /dev/null
+++ b/modules/hosting.nix
@@ -0,0 +1,8 @@
+{ pkgs, username, ... }: {
+  home.home.packages = [
+    pkgs.mysql pkgs.pscale  # Planetscale cli
+  ];
+  config.environment.persistence."/large/persist".users.${username}.directories = [
+    ".config/planetscale"
+  ];
+}