blob: 01a130cf996dab83fa96d3b6cd9ec9cc9131151b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ lib, pkgs, config, myconfig, mylibs, ... }:
let
cfg = config.services.myDatabases;
in {
imports = [
./mysql.nix
./openldap.nix
./postgresql.nix
./redis.nix
];
options.services.myDatabases = {
enable = lib.mkEnableOption "my databases service";
};
}
|