diff options
author | Rory& <root@rory.gay> | 2024-06-10 17:33:26 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-06-10 17:33:26 +0200 |
commit | c24135b96d1b8705d40ba1238cc7725401d4a491 (patch) | |
tree | af3468855573725fefc29ab8935edcc663d6b6a3 /host/Rory-portable/mariadb.nix | |
parent | Bunch of changes (diff) | |
download | Rory-Open-Architecture-c24135b96d1b8705d40ba1238cc7725401d4a491.tar.xz |
Add portable config, some updates
Diffstat (limited to 'host/Rory-portable/mariadb.nix')
-rw-r--r-- | host/Rory-portable/mariadb.nix | 10 |
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; + }; + +} + |