remove db stuff

This commit is contained in:
Simon Gardling 2025-05-09 19:16:08 -04:00
parent e875de29d2
commit f51ab5f57b
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 0 additions and 23 deletions

View File

@ -118,24 +118,4 @@
# disable framework kernel module
# https://github.com/NixOS/nixos-hardware/issues/1330
hardware.framework.enableKmod = false;
# for database class
services.mysql = {
enable = true;
package = pkgs.mariadb;
ensureUsers = [
{
name = "root";
ensurePermissions = {
"*.*" = "ALL PRIVILEGES";
};
}
{
name = "${username}";
ensurePermissions = {
"*.*" = "ALL PRIVILEGES";
};
}
];
};
}

View File

@ -128,9 +128,6 @@
# password manager
keepassxc
# for database class
dbeaver-bin
]
++ (builtins.filter lib.isDerivation (builtins.attrValues nerd-fonts));