feat(nixosModules/databases): add mysql
This commit is contained in:
parent
b6da0aa2f1
commit
e3e8f88460
3 changed files with 44 additions and 11 deletions
|
@ -4,4 +4,16 @@
|
|||
type = lib.types.str;
|
||||
default = "";
|
||||
};
|
||||
mkPortOption =
|
||||
port:
|
||||
lib.mkOption {
|
||||
type = lib.types.port;
|
||||
default = port;
|
||||
};
|
||||
mkPathOption =
|
||||
path:
|
||||
lib.mkOption {
|
||||
type = lib.types.path;
|
||||
default = path;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue