14 lines
573 B
Nix
14 lines
573 B
Nix
# aiolabs pack — the opinionated aiolabs project list + deploy targets +
|
|
# tmux sessions, layered on the lnbits dev environment.
|
|
#
|
|
# Imports the aiolabs preset, which is gated on omni.packs.aiolabs.enable
|
|
# (inert until enabled) and pulls in the lnbits pack. The project/deploy/
|
|
# tmux definitions live in the preset; this file declares the toggle and
|
|
# wires it in.
|
|
{ lib, ... }:
|
|
{
|
|
imports = [ ../dev-env/presets/aiolabs.nix ];
|
|
|
|
options.omni.packs.aiolabs.enable =
|
|
lib.mkEnableOption "aiolabs project preset (projects, deploy targets, tmux) on top of lnbits";
|
|
}
|