Compare commits

..

No commits in common. "2d22bdf0131a0df478bc7e30f02d73646d3c33eb" and "3ecf51580d0c30fcda93c809b445ba43944293d6" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View file

@ -7,7 +7,6 @@
environment.systemPackages = with pkgs; [
dia
jetbrains.idea-ultimate
flakeSelf.packages.x86_64-linux.pseint
];
}

View file

@ -1,15 +1,12 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, ... }:
{
services.mysql = {
enable = true;
package = pkgs.mysql80;
user = "toast";
group = "users";
package = pkgs.mysql80;
user = "toast";
group = "users";
};
# Don't autostart MySQL
systemd.services.mysql.wantedBy = lib.mkForce [];
environment.systemPackages = [ pkgs.mysql-workbench ];
}