17 lines
558 B
Nix
17 lines
558 B
Nix
# dev-env module entry point.
|
|
#
|
|
# This module declaratively manages a multi-project development environment
|
|
# (bare repos, worktrees, navigation helpers, tmux sessions, regtest docker
|
|
# env, upstream-PR workflow). It sits on top of omni and consumes the
|
|
# unified deploy flake as a source of truth for deployed refs.
|
|
#
|
|
# The module only configures tools; it does not materialize repos on disk.
|
|
# That is the job of the user-invoked `dev-env-bootstrap` script installed
|
|
# by config.nix.
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./lib.nix
|
|
./config.nix
|
|
];
|
|
}
|