feat(nixosModules/databases): add mysql

This commit is contained in:
Mohammad Rafiq 2025-06-03 20:59:23 +08:00
parent b6da0aa2f1
commit e3e8f88460
No known key found for this signature in database
3 changed files with 44 additions and 11 deletions

View file

@ -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;
};
}