summary refs log tree commit diff
path: root/host/Rory-portable/mariadb.nix
diff options
context:
space:
mode:
Diffstat (limited to 'host/Rory-portable/mariadb.nix')
-rw-r--r--host/Rory-portable/mariadb.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/host/Rory-portable/mariadb.nix b/host/Rory-portable/mariadb.nix
new file mode 100644
index 0000000..3ebbb0b
--- /dev/null
+++ b/host/Rory-portable/mariadb.nix
@@ -0,0 +1,10 @@
+{ config, pkgs, lib, ... }:
+
+{
+  services.mysql = {
+    enable = true;
+    package = pkgs.mariadb;
+  };
+
+}
+