copy nb configuration and modules
This commit is contained in:
13
utils/modules/mysql/default.nix
Normal file
13
utils/modules/mysql/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
mysql-scripts = pkgs.callPackage ./pkgs/mysql-scripts.nix {};
|
||||
in {
|
||||
environment.systemPackages = [
|
||||
mysql-scripts
|
||||
];
|
||||
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mariadb;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user