aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/db.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/optional/db.nix')
-rw-r--r--hosts/common/optional/db.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/common/optional/db.nix b/hosts/common/optional/db.nix
new file mode 100644
index 0000000..af6766e
--- /dev/null
+++ b/hosts/common/optional/db.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }:
+{
+ environment.systemPackages = builtins.attrValues {
+ inherit (pkgs)
+ mariadb
+ postgresql;
+ };
+}