mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-03-24 11:39:28 +01:00
11 lines
318 B
Nix
11 lines
318 B
Nix
|
|
{nixlet-lib, ...}:
|
||
|
|
# █▄ █ █ ▀▄▀ █ █▀▀ ▀█▀ █▀
|
||
|
|
# █ ▀█ █ █ █ █▄▄ ██▄ █ ▄█
|
||
|
|
with nixlet-lib; {
|
||
|
|
mosquitto = mkNixlet ./mosquitto;
|
||
|
|
attic = mkNixlet ./attic;
|
||
|
|
postgres = mkNixlet ./postgres;
|
||
|
|
tikv = mkNixlet ./tikv;
|
||
|
|
surrealdb = mkNixlet ./surrealdb;
|
||
|
|
}
|