School: enable mysql
This commit is contained in:
parent
1c9dced21c
commit
efbba16fea
2 changed files with 13 additions and 0 deletions
12
roles/school/services/mysql.nix
Normal file
12
roles/school/services/mysql.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mysql80;
|
||||
user = "toast";
|
||||
group = "users";
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.mysql-workbench ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue