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