12 lines
283 B
Nix
12 lines
283 B
Nix
# Coding environment aggregator — profile-independent development tooling.
|
|
# Imports editors, LSP servers, git configuration, the agent system, and optional packages.
|
|
{...}: {
|
|
imports = [
|
|
./editor
|
|
./lsp
|
|
./git/git.nix
|
|
./agents/agents.nix
|
|
./packages.nix
|
|
];
|
|
}
|