add mysql/mariadb

This commit is contained in:
2025-05-07 12:38:23 -04:00
parent b44f259d71
commit d88d010f72

View File

@@ -118,4 +118,10 @@
# disable framework kernel module # disable framework kernel module
# https://github.com/NixOS/nixos-hardware/issues/1330 # https://github.com/NixOS/nixos-hardware/issues/1330
hardware.framework.enableKmod = false; hardware.framework.enableKmod = false;
# for database class
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
} }